forked from seanbeirnes/lmsdash-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 830 Bytes
/
Copy pathmanifest.json
File metadata and controls
36 lines (36 loc) · 830 Bytes
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
{
"manifest_version": 3,
"name": "LMS Dash",
"description": "LMS Dash helps instructors, instructional designers, and administrators spend less time managing Canvas.",
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline';"
},
"version": "0.4.0",
"icons": {
"16": "img/icon-16.png",
"32": "img/icon-32.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"background": {
"service_worker": "src/ServiceWorker/index.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"src/ContentScript/index.js"
],
"matches": [
"https://*.instructure.com/*"
]
}
],
"side_panel": {
"default_path": "src/SidePanel/index.html"
},
"permissions": [
"sidePanel",
"tabs"
]
}