-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
56 lines (55 loc) · 1.17 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
52
53
54
55
{
"name": "EEXCESS-Wiki-Recommender",
"version": "1.4.2",
"background": {
"page": "html/background.html"
},
"content_scripts": [
{
"matches": [
"*://*.wikipedia.org/*action=edit*",
"*://*.wikipedia.org/*action=submit*"
],
"run_at": "document_end",
"js": [
"js/lib/requirejs/require.js",
"js/requireContent.js",
"js/common.js",
"js/content.js",
"js/searchSidebar.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",
"css/sidebar.css"
]
}
],
"web_accessible_resources": [
"js/*",
"visualization-widgets/*",
"media/*",
"html/*"
],
"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"
}
}