-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
52 lines (52 loc) · 1.43 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
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "Coursera Automation Extension",
"version": "3.5.4",
"author": "Saurav Hathi",
"version_name": "Release Version",
"description": "This extension is used to attempt the coursera course quiz, video, reading material, ungraded plugin and discussion automatically.",
"permissions": ["storage", "activeTab", "scripting", "tabs", "commands"],
"background": {
"service_worker": "/dist/scripts/background.js"
},
"icons": {
"16": "dist/assets/1.png",
"32": "dist/assets/2.png",
"48": "dist/assets/3.png",
"128": "dist/assets/4.png"
},
"action": {
"default_popup": "dist/popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": ["*://*.coursera.org/*"],
"js": ["dist/scripts/content.js"],
"css": ["dist/ui/content.css"]
}
],
"commands": {
"open_popup_1": {
"suggested_key": {
"default": "Alt+B",
"mac": "Command+B"
},
"description": "Open the Course Automation Extension popup window with Alt+B"
},
"open_popup_2": {
"suggested_key": {
"default": "Alt+W",
"mac": "Command+W"
},
"description": "Open the Course Automation Extension popup window with Alt+W"
}
},
"web_accessible_resources": [
{
"resources": ["dist/scripts/rdr.js"],
"matches": ["*://*.coursera.org/*"]
}
],
"host_permissions": ["*://*.coursera.org/*"]
}