Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Stream 2 DL",
"version": "1.1",
"description": "Capture HLS\/m3u8\/MP4 streams and get a finished ffmpeg command out of it.",
"permissions": [
"activeTab",
"webRequest",
"clipboardWrite",
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"default_popup": "popup.html",
"default_width": 500
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"exclude_matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.youtu.be\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}