-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmanifest.json
38 lines (38 loc) · 836 Bytes
/
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
{
"name": "Extensions Reloader",
"manifest_version": 2,
"version": "1.15",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"page": "background.html"
},
"commands": {
"reload": {
"description": "Reload all extensions in development",
"suggested_key": {
"default": "Alt+Shift+R"
}
}
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"tabs",
"management",
"storage",
"webRequest",
"webRequestBlocking",
"http://reload.extensions/"
],
"browser_action": {
"default_icon": "icon19.png",
"default_title": "Reload Extensions"
},
"description": "Reload all unpacked extensions using the extension's toolbar button or by browsing to \"http://reload.extensions\""
}