-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
29 lines (29 loc) · 849 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
{
"manifest_version": 2,
"name": "Coursera HD Video Downloader",
"version": "2.1.3",
"description": "Download coursera videos in HD",
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"browser_action": {
"default_title": "Coursera Videos Downloader",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://www.coursera.org/*"],
"js": ["in-content.js"],
"css": ["style.css"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": ["https://www.coursera.org/*", "webNavigation", "activeTab"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}