-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice-worker.js
More file actions
30 lines (23 loc) · 840 Bytes
/
service-worker.js
File metadata and controls
30 lines (23 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// chrome.runtime.onInstalled.addListener(() => {
// chrome.action.setBadgeText({
// text: "OFF",
// });
// });
chrome.action.onClicked.addListener(async (tab) => {
// if (tab.url.includes("")) {
// // Retrieve the action badge to check if the extension is 'ON' or 'OFF'
// const prevState = await chrome.action.getBadgeText({ tabId: tab.id });
// // Next state will always be the opposite
// const nextState = prevState === 'ON' ? 'OFF' : 'ON';
// location.reload();
// // Set the action badge to the next state
// await chrome.action.setBadgeText({
// tabId: tab.id,
// text: nextState,
// });
// }
chrome.scripting.executeScript({
target: { tabId: tab.id },
files: ["content-script.js"]
});
});