-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
52 lines (50 loc) · 1.24 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "EEXCESS_DEV",
"version": "0.43",
"background": {
"page": "background/background.html"
},
"browser_action":
{
"default_icon": {
"19": "media/icons/19.png",
"38": "media/icons/38.png"
},
"default_title": "EEXCESS"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_globs": ["*google*chrome*"],
"run_at":"document_end",
"js": [
"libs/jquery-1.10.1.min.js",
"common_js/browser_specific.js",
"content.js",
"ContextDetector.js"
],
"css": ["media/css/sidebar.css"]
}
],
"web_accessible_resources": [
"media/*",
"widget/*",
"options/*",
"privacy/*",
"libs/*",
"visualizations/*",
"help.html"
],
"manifest_version": 2,
"permissions": [
"tabs",
"<all_urls>",
"geolocation",
"history",
"background",
"storage"
],
"icons": {"16": "media/icons/16.png",
"48": "media/icons/48.png",
"128": "media/icons/128.png"}
}