-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
52 lines (49 loc) · 1.16 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
function updateIcon() {
browser.proxy.settings.get({}).then(function(fetched) {
let newSetting = fetched.value;
if (newSetting.proxyType === "none") {
browser.browserAction.setIcon({
"path": {
"32": "proxy_off.svg",
"64": "proxy_off.svg",
}
});
browser.browserAction.setTitle({
title: "Proxy off"
});
}
else {
browser.browserAction.setIcon({
"path": {
"32": "proxy_on.svg",
"64": "proxy_on.svg",
}
});
browser.browserAction.setTitle({
title: "Proxy on"
});
}
});
}
function toggleProxy() {
browser.proxy.settings.get({}).then(function(fetched) {
let newSetting = fetched.value;
if (newSetting.proxyType === "none") {
newSetting.proxyType = "manual"
browser.proxy.settings.set({
value: newSetting
});
}
else {
newSetting.proxyType = "none";
browser.proxy.settings.set({
value: newSetting
});
}
updateIcon();
});
}
browser.proxy.settings.clear({}).then(function(){
updateIcon();
});
browser.browserAction.onClicked.addListener(toggleProxy);