Inspect and view changes in yt-dlp downloader source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "yt-dlp downloader",
"description": "Download media using yt-dlp",
"version": "0.1.2",
"icons": {
"48": "icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "yt_dlp_firefox@tyilo.com",
"strict_min_version": "80.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.svg",
"default_popup": "popup-dist/index.html",
"browser_style": true
},
"permissions": [
"nativeMessaging",
"contextMenus",
"notifications"
]
}