-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
54 lines (54 loc) · 1.09 KB
/
manifest.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
{
"manifest_version": 2,
"name": "Userchrome Toggle",
"version": "1.2",
"description": "This extension allows you to toggle userchrome.css styles on-the-fly with buttons and hotkeys.",
"icons": {
"48": "images/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"browser_action": {
"default_title": "Toggle userchrome style",
"default_icon": "images/toggle-off.svg",
"default_area": "navbar",
"browser_style": true
},
"background": {
"scripts": [
"uct-background.js"
]
},
"commands": {
"toggle-style-1": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Toggle userchrome style 1"
},
"toggle-style-2": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "Toggle userchrome style 2"
},
"toggle-style-3": {
"suggested_key": {
"default": "Ctrl+Shift+3"
},
"description": "Toggle userchrome style 3"
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true
},
"permissions": [
"notifications",
"storage"
]
}