forked from FutureXpo/Chrome-Extension-LMS-Answers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.06 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
{
"name": "LMS helper ♥",
"homepage_url": "https://github.com/FutureXpo/Chrome-Extension-LMS-Answers",
"description": "Easy answers from your heart. Made with love by FutureX",
"icons": {
"16": "icons/icon.png",
"32": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"version": "1.4.8.8",
"manifest_version": 2,
"browser_action": {
"default_icon": "icons/icon.png",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "popup/popup.html",
"open_in_tab": false
},
"background": {
"scripts": ["js/background.js", "js/true_mode.js" ]
},
"content_scripts": [
{
"matches": [ "*://www.cambridgelms.org/*" ],
"js": [ "js/simple_mode.js" ],
"run_at": "document_end"
},{
"matches": [ "*://www.cambridgelms.org/*" ],
"js": [ "js/jquery.js", "js/show_mode.js", "js/auto_mode.js" ],
"run_at": "document_idle",
"all_frames": true
}
],
"permissions": [
"tabs",
"contextMenus",
"storage",
"webRequest",
"webRequestBlocking",
"*://www.cambridgelms.org/*",
"activeTab",
"management"
]
}