-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbackground.js
81 lines (70 loc) · 2.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const debug = (msg) => {
console.log(`css-override-web-extension: ${msg}`); // eslint-disable-line
};
const getStorageData = (domainKey) => browser.storage.sync.get(domainKey);
const getTabUrl = (tab) => new URL(tab.url).hostname;
const toggleCSS = (tabId, enabled, style) => {
if (enabled) {
browser.tabs.insertCSS(tabId, { code: style });
} else {
browser.tabs.removeCSS(tabId, { code: style });
}
};
const setTabStyle = (id, url) => {
getStorageData(url).then((tabData) => {
debug(JSON.stringify(tabData));
if (tabData[url]) {
const { enabled } = tabData[url];
toggleCSS(id, enabled, tabData[url].style);
}
});
};
const initializeTabStyles = () => {
const getAllTabs = browser.tabs.query({});
getAllTabs.then((tabs) => {
/* eslint-disable no-restricted-syntax */
for (const tab of tabs) {
const tabUrl = getTabUrl(tab);
setTabStyle(tab.id, tabUrl);
}
/* eslint-enable no-restricted-syntax */
});
};
const reloadTab = (tab) => {
debug('Reloading tab');
setTabStyle(tab.id, tab.url);
};
const tabStyleChanged = (urlToUpdate) => {
const getAllTabs = browser.tabs.query({});
getAllTabs.then((tabs) => {
/* eslint-disable no-restricted-syntax */
for (const tab of tabs) {
const tabUrl = getTabUrl(tab);
if (tabUrl === urlToUpdate) {
browser.tabs.reload(tab.id);
}
}
/* eslint-enable no-restricted-syntax */
});
};
// Listen for actions passed from popup window
const eventListener = (request, sender, sendResponse) => {
debug(`Event listener action ${request.action}`);
if (request.action === 'reloadTab') {
reloadTab(request.tab);
sendResponse({ response: true });
} else if (request.action === 'updateStyle') {
// if styles for a url changed - update all its tabs
tabStyleChanged(request.tabUrl);
}
};
const initializeExtension = () => {
debug('Initializing extension');
initializeTabStyles();
browser.runtime.onMessage.addListener(eventListener);
browser.tabs.onUpdated.addListener((id, changeInfo, tab) => {
// Re apply styles if tab is updated (refresh)
reloadTab({ id, url: getTabUrl(tab) });
});
};
initializeExtension();