YT-DLP CMD generator

YT-DLP CMD generator

An add-on that creates yt-dlp commands for YouTube videos. Select your parameters once and just copy. Enhances usability and speed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YT-DLP CMD generator",
  "version": "1.3",
  "description": "An add-on to generate yt-dlp command for YouTube videos.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9d4444eb-a178-48fc-906c-c114dbd0037c}"
    }
  }
}