Files
page-assist/src/background.ts

11 lines
240 B
TypeScript
Raw Normal View History

2024-02-01 13:40:44 +05:30
export {}
chrome.runtime.onMessage.addListener(async (message) => {
chrome.tabs.query({ active: true, currentWindow: true }, async (tabs) => {
const tab = tabs[0]
await chrome.sidePanel.open({
2024-02-01 23:48:40 +05:30
tabId: tab.id,
2024-02-01 13:40:44 +05:30
})
})
})