-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_worker.js
68 lines (57 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
importScripts('swap.js');
var activeOnTabs = {};
function changeIconTo(tabId, state) {
var icon = {};
if (state == 'active') {
icon = {
'19': 'images/active19.png',
'38': 'images/active38.png'
}
} else {
icon = {
'19': 'images/inactive19.png',
'38': 'images/inactive38.png'
};
}
chrome.action.setIcon({
path: icon,
tabId: tabId
});
}
function activateOnTab(tabId) {
changeIconTo(tabId, 'active');
activeOnTabs[tabId] = true;
chrome.scripting.executeScript({
target: { tabId: tabId },
function: startSwapping
}).catch((err) => {
/* When the host changes */
if (err.message.includes('Cannot access contents of the page')) {
changeIconTo(tabId, 'inactive');
delete activeOnTabs[tabId];
}
});
}
function deactivateOnTab(tabId) {
changeIconTo(tabId, 'inactive');
delete activeOnTabs[tabId];
chrome.scripting.executeScript({
target: { tabId: tabId },
function: () => window.location.reload()
});
}
chrome.action.onClicked.addListener(function(tab) {
if (activeOnTabs[tab.id]) {
deactivateOnTab(tab.id);
} else {
activateOnTab(tab.id);
}
});
chrome.tabs.onUpdated.addListener((tabId, changeInfo) => {
if (activeOnTabs[tabId] && changeInfo.status === "complete") {
activateOnTab(tabId);
}
});
chrome.tabs.onRemoved.addListener((tabId) => {
delete activeOnTabs[tabId];
});