-
Notifications
You must be signed in to change notification settings - Fork 68
/
manifest.json
29 lines (29 loc) · 908 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": 3,
"name": "PluralsightCourseDownloaderExtension",
"description": "Download entire course from Pluralsight easily",
"version": "0.1.0",
"author": "Sahil Sehwag",
"homepage_url": "https://github.com/sahilsehwag/pluralsight-downloader-chrome-extension",
"content_scripts": [
{
"matches": ["https://app.pluralsight.com/*"],
"js": ["lib/jquery.slim.min.js", "src/script.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "src/background.js"
},
"action": {
"default_icon": {
"16": "images/extension_icon_16.png",
"32": "images/extension_icon_32.png",
"48": "images/extension_icon_48.png",
"128": "images/extension_icon_128.png"
},
"default_title": "Pluralsight Downloader",
"default_popup": "src/popup.html"
},
"permissions": ["activeTab", "declarativeContent", "storage", "downloads", "notifications", "unlimitedStorage"]
}