-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
44 lines (42 loc) · 1.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
34
35
36
37
38
39
40
41
42
43
44
chrome.runtime.onInstalled.addListener(() => {
chrome.action.setBadgeText({
text: 'OFF',
});
});
const extensions = 'https://developer.chrome.com/docs/extensions';
const webstore = 'https://developer.chrome.com/docs/webstore';
chrome.action.onClicked.addListener(async (tab) => {
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') {
chrome.scripting.executeScript({
target: {
tabId: tab.id,
},
func: () => {
document.addEventListener(
'selectionchange',
handleOnSelectionChange
);
},
});
} else if (nextState === 'OFF') {
chrome.scripting.executeScript({
target: {
tabId: tab.id,
},
func: () => {
document.removeEventListener(
'selectionchange',
handleOnSelectionChange
);
},
});
}
});