-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 1000 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
{
"manifest_version": 2,
"name": "Coursera Answer Checker",
"description": "Determine if your answers match the expected answers in a Coursera Jupyter notebook.",
"version": "1.0.0",
"author": "Robert Reed",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"page_action": {
"default_title": "Coursera-Checker",
"default_popup": "popup.html",
"default_icon": {
"16": "images/coursera-16x16.png",
"32": "images/coursera-32x32.png",
"48": "images/coursera-48x48.png",
"128": "images/coursera-128x128.png"
}
},
"icons": {
"16": "images/coursera-16x16.png",
"32": "images/coursera-32x32.png",
"48": "images/coursera-48x48.png",
"128": "images/coursera-128x128.png"
},
"permissions": ["activeTab", "declarativeContent", "storage"],
"content_scripts": [
{
"matches": ["https://hub.coursera-notebooks.org/*"],
"run_at": "document_end",
"js": ["content-script.js"]
}
]
}