-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.19 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": "WGU Task Page Dark Mode by DK",
"version": "20210.2.2800",
"description": "Dark mode for Western Governors University task pages, also makes task header and content text larger",
"manifest_version": 2,
"background":{
"scripts": ["js/req/portCommunications.js","js/background.js"]
},
"icons": {
"16": "img/wgu-icon-light.png",
"48": "img/wgu-icon-light.png",
"128": "img/wgu-icon-light.png",
"256": "img/wgu-icon-light.png"
},
"browser_action": {
"default_icon": "img/wgu-icon-top.png",
"default_title": "WGU Task Page Dark Mode by DK",
"default_popup": "menu.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com/; object-src 'self'",
"content_scripts": [
{
"matches": [ "https://tasks.wgu.edu/*/*/course/*/task/*" ],
"css": [ "css/wgudark.css" ]
}
],
"web_accessible_resources": [
"*.html",
"img/*.png",
"img/*.gif",
"img/*.jpg",
"img/*.svg",
"*.json",
"js/*.js",
"js/req/*.map",
"js/req/*.js"
],
"permissions": [
"contextMenus",
"management",
"storage",
"tabs",
"webNavigation",
"https://tasks.wgu.edu/*"
]
}