mirror of
https://github.com/TristanEDU/LiveOverlayExtension.git
synced 2026-01-12 23:58:22 +00:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
chrome.action.onClicked.addListener(async (tab) => {
|
|
if (!tab?.id) return
|
|
|
|
await chrome.scripting.executeScript({
|
|
target: { tabId: tab.id },
|
|
files: ['scripts/overlay.js'],
|
|
})
|
|
})
|