forked from gkovacs/foreign-manga-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json~
31 lines (28 loc) · 871 Bytes
/
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
{
"manifest_version": 2,
"name": "Foreign Manga Reader",
"description": "This extension helps you read manga in foreign languages on nb.mit.edu",
"version": "1.8",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"tabs",
"http://geza.csail.mit.edu:1357/*",
"http://nb.mit.edu/*",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [ {
"all_frames": true,
"js": [ "underscore.js", "js/jquery-1.9.0.js", "js/jquery-ui-1.10.0.custom.js", "async.js", "visutils.js", "scriptUtils.js", "glossSelection.js", "nb.js" ],
"css": ["css/ui-lightness/jquery-ui-1.10.0.custom.css"],
"matches": [ "http://nb.mit.edu/*", "https://nb.mit.edu/*" ]
} ]
}