-
Notifications
You must be signed in to change notification settings - Fork 21
/
service-worker.js
50 lines (46 loc) · 1.7 KB
/
service-worker.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const extensions = "https://developer.chrome.com/docs/extensions";
const webstore = "https://developer.chrome.com/docs/webstore";
chrome.action.onClicked.addListener(async (tab) => {
if (tab.url.startsWith(extensions) || tab.url.startsWith(webstore)) {
// 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";
// Set the action badge to the next state
await chrome.action.setBadgeText({
tabId: tab.id,
text: nextState,
});
if (nextState === "ON") {
// Insert the CSS file when the user turns the extension on
await chrome.scripting.insertCSS({
file: ["css/alx-dark.css"],
target: { tabId: tab.id },
});
await chrome.scripting.executeScript({
files: ["js/content-script.js"],
target: { tabId: tab.id },
});
} else if (nextState === "OFF") {
// Remove the CSS and content-scripts when the user turns the extension off
await chrome.scripting.removeCSS({
files: ["css/alx-dark.css"],
target: { tabId: tab.id },
});
unregisterContentScripts();
}
}
});
async function unregisterContentScripts() {
try {
const scripts = await chrome.scripting.getRegisteredContentScripts();
const scriptIds = scripts.map((script) => script.id);
return chrome.scripting.unregisterContentScripts(scriptIds);
} catch (error) {
const message = [
"An unexpected error occurred while",
"unregistering dynamic content scripts.",
].join(" ");
throw new Error(message, { cause: error });
}
}