Download videos from the Web. The extension handles some HLS based and single file video stream formats and it can be used for websites that use respective technology (e.g. arte.tv, YouTube, Putlocker, HlsPlay, 123Movies, Tinklepad, SolarMovie, etc).
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Download videos from the Web",
"manifest_version": 2,
"name": "HLS Video Download",
"version": "1.1.0",
"homepage_url": "https://www.wothke.ch/hls/purchase.php",
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"icons": {
"48": "icons/icon-48.png"
},
"permissions": [
"storage",
"downloads",
"tabs",
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_icon": "icons/button-32.png",
"default_title": "HLS Video Download",
"default_popup": "popup/choose.html"
},
"web_accessible_resources": [
"jquery-3.5.1.min.js",
"hls_wasm_bg.wasm"
],
"background": {
"scripts": [
"wasm_stub.js",
"aes-js.js",
"background.js"
],
"persistent": true
},
"browser_specific_settings": {
"gecko": {
"id": "@hls.video.download",
"strict_min_version": "58.0"
}
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
]
}
]
}