mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
9 lines
No EOL
245 B
JavaScript
9 lines
No EOL
245 B
JavaScript
// Background Worker
|
|
|
|
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
|
|
console.log(message.action);
|
|
/*chrome.scripting.executeScript({
|
|
target: {tabId: tabs[0].id},
|
|
files: ['test.js']
|
|
});*/
|
|
}); |