-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackground.js
33 lines (29 loc) · 1 KB
/
background.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
chrome.runtime.onInstalled.addListener(() => {
chrome.action.setBadgeText({
text: "",
});
});
const extensions = "https://developer.chrome.com/docs/extensions";
const webstore = "https://developer.chrome.com/docs/webstore";
chrome.action.onClicked.addListener(async (tab) => {
// 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 === "ON" ? "ON" : "",
});
if (nextState === "ON") {
await chrome.scripting.executeScript({
target: { tabId: tab.id, allFrames: true },
files: ["addOutline.js"],
});
} else if (nextState === "OFF") {
await chrome.scripting.executeScript({
target: { tabId: tab.id, allFrames: true },
files: ["removeOutline.js"],
});
}
});