-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·45 lines (38 loc) · 971 Bytes
/
manifest.json
File metadata and controls
executable file
·45 lines (38 loc) · 971 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
43
44
{
"name": "QueryCrumbs",
"version": "0.0.1",
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [{
"matches": ["*://*/*"],
"include_globs": [
"*://*.google.*/*"
],
"run_at": "document_idle",
"js": ["js/lib/requirejs/require.js", "js/requireContent.js", "js/common.js", "js/content.js", "js/setup.js", "js/background.js"]
}],
"web_accessible_resources": [
"js/*",
"visualization-widgets/*",
"media/*",
"html/*"
],
"manifest_version": 2,
"permissions": [
"tabs",
"webRequest",
"<all_urls>",
"background",
"storage"
],
"icons": {
"16": "media/icons/16.png",
"48": "media/icons/48.png",
"128": "media/icons/128.png",
"32": "media/icons/eexcess.png"
},
"browser_action": {
"default_icon": "media/icons/19.png"
}
}