yt-dlp downloader

Download media using yt-dlp. Currently only Linux is supported. Requires the following packages installed: - python3 - yt--dlp: https://github.com/yt-dlp/yt-dlp - native helper: https://github.com/Tyilo/yt_dlp_firefox
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"
  ]
}