forked from henices/Chrome-proxy-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (39 loc) · 984 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
39
{
"version": "1.3.7",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_appDesc__",
"name": "__MSG_appName__",
"icons": {
"128": "images/on.png",
"48": "images/on48.png",
"16": "images/on16.png"
},
"permissions": [
"file://*/*",
"proxy",
"tabs",
"unlimitedStorage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"commands": {
"open-option": {
"suggested_key": {
"default": "Alt+O"},
"description": "Open option page"
}
},
"options_page": "options.html",
"browser_action": {
"default_icon": "images/off.png",
"default_title": "__MSG_title__",
"default_popup": "popup.html"
},
"update_url" : "http://clients2.google.com/service/update2/crx",
"minimum_chrome_version":"38.0.0"
}