-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 646 Bytes
/
manifest.json
File metadata and controls
28 lines (28 loc) · 646 Bytes
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
{
"name": "Javascript Switcher",
"author": "Suraj Jain",
"version": "1.4.0",
"background": {
"scripts": [
"/background/background.js"
]
},
"description": "Add a button in the url bar to block or enable javascript per-site.\n",
"homepage_url": "https://github.com/meetDeveloper/Quick-JS-Switcher",
"icons": {
"128": "/icons/js.png"
},
"manifest_version": 2,
"page_action": {
"browser_style": true,
"default_icon": "/icons/js_disabled.png",
"default_title": "Enable Javascript"
},
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"storage",
"tabs"
]
}