-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (40 loc) · 1.1 KB
/
manifest.json
File metadata and controls
42 lines (40 loc) · 1.1 KB
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
{
"name": "EEXCESS",
"version": "1.9.1",
"background": {
"page": "html/background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at":"document_end",
"js": ["js/lib/requirejs/require.js","js/requireContent.js","js/common.js","js/content.js"],
"css": ["js/lib/jquery-ui/themes/smoothness/jquery-ui.css","js/lib/tag-it/css/jquery.tagit.css", "js/lib/c4/searchBar/searchBar.css", "css/content.css"]
}
],
"web_accessible_resources": [
"js/*",
"visualization-widgets/*",
"media/*",
"html/*",
"easter-egg/*"
],
"manifest_version": 2,
"permissions": [
"tabs",
"<all_urls>",
"background",
"storage"
],
"icons": {"16": "media/icons/16.png",
"48": "media/icons/48.png",
"128": "media/icons/128.png"},
"options_ui":{
"page": "html/options.html",
"chrome_style":true
},
"browser_action":{
"default_icon":"media/icons/19.png",
"default_popup":"html/popup.html"
}
}