-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 978 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
{
"manifest_version": 2,
"name": "Redirector",
"description": "__MSG_DESCRIPTION__",
"icons": {
"16": "icons/icon_16.png",
"19": "icons/icon_19.png",
"128": "icons/icon_128.png"
},
"background": {
"scripts": ["scripts/utils.js",
"scripts/background.js",
"scripts/debugger_background.js",
"libs/xregexp-min.js"]
},
"options_page": "pages/options.html",
"devtools_page": "pages/debugger_background.html",
"page_action": {
"default_icon": "icons/icon_19.png",
"default_title": "Redirector",
"default_popup": "pages/popup.html"
},
"default_locale": "en",
"permissions": ["declarativeWebRequest",
"webRequest",
"webRequestBlocking",
"storage",
"tabs",
"contextMenus",
"downloads",
"<all_urls>"],
"minimum_chrome_version": "22",
"version": "2.9.0.0"
}