-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 891 Bytes
/
manifest.json
File metadata and controls
36 lines (36 loc) · 891 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
29
30
31
32
33
34
35
36
{
"name": "Javascript Toggle",
"version": "1.5",
"description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.",
"permissions": [
"tabs",
"contentSettings"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"commands": {
"toggle-js": {
"suggested_key": {
"default": "Ctrl+I",
"mac": "Command+J"
},
"description": "Toggle the Javascript setting on this page."
}
},
"icons": {
"16": "images/allow-16.png",
"32": "images/allow-32.png",
"48": "images/allow-48.png"
},
"browser_action": {
"default_icon": {
"16": "images/allow-16.png",
"32": "images/allow-32.png",
"48": "images/allow-48.png"
},
"default_title": "Toggle the Javascript setting on any page with ease."
},
"manifest_version": 2
}