-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
35 lines (34 loc) · 986 Bytes
/
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
{
"name": "Desmos Sketches Gallery Download",
"manifest_version": 3,
"description": "Download the gallery of Desmos sketches (unofficial)",
"version": "1.0.0",
"icons": {
"32": "icons/32x32.png",
"64": "icons/64x64.png",
"128": "icons/128x128.png"
},
"options_page": "settings/settings.html",
"action": {
"default_title": "Desmos Gallery Download",
"default_popup": "popup/popup.html"
},
"permissions": ["scripting", "activeTab", "tabs"],
"background": {
"service_worker": "Background-Service-Worker.js"
},
"content_scripts": [{
"js": ["jszip.min.js","Foreground-Content.js"],
"matches": ["https://teacher.desmos.com/dashboard/*"]
}],
"web_accessible_resources": [
{
"resources": [
"galleryTemplate/style.css",
"galleryTemplate/index.html",
"galleryTemplate/script.js"
],
"matches": ["<all_urls>"]
}
]
}