-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
39 lines (35 loc) · 1.16 KB
/
background.js
File metadata and controls
39 lines (35 loc) · 1.16 KB
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
chrome.runtime.onInstalled.addListener(() => {
chrome.action.setBadgeText({
text: 'OFF'
});
});
// When the user clicks on the extension action
chrome.action.onClicked.addListener(async (tab) => {
// We 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.executeScript({
target: { tabId: tab.id },
files: ['content-script.js']
});
await chrome.scripting.insertCSS({
files: ['reading-mode.css'],
target: { tabId: tab.id }
});
} else if (nextState === 'OFF') {
// Remove the CSS file when the user turns the extension off
await chrome.scripting.removeCSS({
files: ['reading-mode.css'],
target: { tabId: tab.id }
});
}
}
);