-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.24 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": "Help Me Nittany Lion",
"version": "1.2.1",
"description": "Submit a Canvas assignment",
"manifest_version": 3,
"author": "Maguire Younes",
"action": {
"default_popup": "html/index.html",
"default_title": "Help Me Nittany Lion",
"default_icon": {
"16": "Images/icon16.png",
"32": "Images/icon32.png",
"48": "Images/icon48.png",
"128": "Images/icon128.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://*.instructure.com/*",
"https://www.gradescope.com/*",
"https://classroom.google.com/*"
],
"background":
[ "background.js"
],
"content_scripts": [
{
"matches": [
"https://*.instructure.com/*",
"https://www.gradescope.com/*",
"https://classroom.google.com/*"
],
"js": ["js/content.js", "js/script.js"],
"css": ["styles/input.css", "styles/output.css"]
}
],
"icons": {
"16": "Images/icon16.png",
"32": "Images/icon32.png",
"48": "Images/icon48.png",
"128": "Images/icon128.png"
}
}