added url params on home page to auto download content

created chrome extension to facilitate this feature
This commit is contained in:
Isaac Grynsztein
2020-02-28 21:21:17 -05:00
parent 5ca4f036c7
commit 695b836852
9 changed files with 158 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
{
"manifest_version": 2,
"name": "YoutubeDL-Material",
"version": "0.1",
"description": "The official chrome extension of YoutubeDL-Material, an open-source and self-hosted YouTube downloader.",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "favicon.png"
},
"permissions": [
"tabs",
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}