-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.39 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
{
"manifest_version": 2,
"name": "ToshinFox",
"version": "17.0b",
"description": "Help your study with Firefox, saying goodbye Internet Explorer",
"icons": {
"48": "icons/ic_main.png"
},
"permissions": [
"*://*.toshin.com/*",
"notifications",
"webRequest",
"webRequestBlocking",
"storage"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"*://*.toshin.com/*"
],
"js": [
"content_script.js"
],
"css": [
"./styles/main.css"
],
"run_at": "document_end",
"match_about_blank": true,
"all_frames": true
}
],
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"options_ui": {
"page": "./pages/extension_preferences.html",
"browser_style": true
},
"web_accessible_resources": ["content_interception.js","scripts/*","styles/*","pages/*"],
"content_security_policy": "script-src 'self' https://code.getmdl.io https://ajax.googleapis.com https://shaka-player-demo.appspot.com https://code.jquery.com https://cdn.rawgit.com https://*.gstatic.com https://fonts.googleapis.com; object-src 'self'"
}