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
|
{
"manifest_version": 2,
"name": "Tor Proxy Toggle",
"version": "1.2.1",
"description": "Toggle between direct connection and using Tor routing from a local daemon (requires a Tor service installed an running, separately of IceCat). Based on 'Proxy toggle' extension",
"icons": {
"48": "icons/p1.svg",
"96": "icons/p1.svg"
},
"permissions": [
"storage",
"proxy",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"browser_style": true,
"default_icon": "icons/p1.svg",
"default_title": "Tor Proxy Toggle"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Toggle Tor proxy on/off"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "settings.html",
"browser_style": true
},
"applications": {
"gecko": {
"strict_min_version": "60.0",
"id": "torproxy@icecat.gnu"
}
}
}
|