sahilsehwag/pluralsight-downloader-chrome-extension

Manifest version 2 is deprecated...

VNRARA opened this issue ยท 4 comments

Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details.

Nothing big, just a heads up

@VNRARA thanks a lot for this update

@VNRARA - @sahilsehwag - Copy this in manifest file:

{
"manifest_version": 3,
"name": "PluralsightCourseDownloaderExtension",
"description": "Download entire course from Pluralsight easilty",
"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"]
}

ImD4 commented

@VNRARA - @sahilsehwag - Copy this in manifest file:

{ "manifest_version": 3, "name": "PluralsightCourseDownloaderExtension", "description": "Download entire course from Pluralsight easilty", "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"] }

Works great! Thank you!

There is a typo in the above proposal, easilty โ†’ easily.