-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
manifest-gecko.json
62 lines (62 loc) · 1.35 KB
/
manifest-gecko.json
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
{
"author": "David Pacassi Torrico",
"manifest_version": 2,
"name": "Disable JavaScript",
"version": "2.3.1",
"description": "Adds the ability to disable JavaScript on specific sites.",
"homepage_url": "https://github.com/dpacassi/disable-javascript",
"default_locale": "en",
"icons": {
"40": "icons/40/app.png",
"48": "icons/48/app.png",
"128": "icons/128/app.png"
},
"browser_action": {
"browser_style": false,
"default_icon": {
"40": "icons/40/js-on.png",
"48": "icons/48/js-on.png",
"128": "icons/128/js-on.png"
},
"default_title": "Toggle JavaScript"
},
"background": {
"scripts": [
"background/background.js"
]
},
"options_ui": {
"browser_style": false,
"open_in_tab": true,
"page": "pages/options.html"
},
"permissions": [
"<all_urls>",
"activeTab",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"menus",
"contextMenus"
],
"commands": {
"toggle-state": {
"suggested_key": {
"default": "Alt+Shift+1"
},
"description": "Toggle JavaScript"
},
"open-settings": {
"suggested_key": {
"default": "Alt+Shift+2"
},
"description": "Open Disable JavaScript settings"
}
},
"applications": {
"gecko": {
"id": "disable-javascript@pacassi.ch"
}
}
}