-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·42 lines (42 loc) · 988 Bytes
/
manifest.json
File metadata and controls
executable file
·42 lines (42 loc) · 988 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
37
38
39
40
41
42
{
"description": "__MSG_appDesc__",
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"128": "src/assets/icon/icon128.png",
"48": "src/assets/icon/icon48.png",
"32": "src/assets/icon/icon32.png",
"16": "src/assets/icon/icon16.png"
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"webRequest",
"<all_urls>",
"http://*/*",
"https://*/*",
"webNavigation",
"webRequestBlocking",
"cookies",
"storage",
"unlimitedStorage"
],
"options_page": "src/options/options.html",
"options_ui": {
"page": "src/options/options.html",
"chrome_style": true
},
"content_scripts": [{
"js": ["lib/jq/jquery-2.1.1.min.js", "src/grootify.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start",
"all_frames": false
}],
"background": {
"scripts": ["src/background.js"]
}
}