YT Siphon

YT Siphon

Redirect YouTube URLs to alternative frontends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "YT Siphon",
  "version": "1.0.6",
  "description": "Redirect YouTube URLs to alternative frontends",
  "icons": {
    "512": "icons/logo.png"
  },
  "action": {
    "default_icon": {
      "512": "icons/logo.png"
    }
  },
  "background": {
    "scripts": [
      "main/background.js"
    ]
  },
  "options_ui": {
    "page": "main/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "storage"
  ],
  "commands": {
    "open_alt_frontend": {
      "suggested_key": {
        "default": "Alt+J"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "main/content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "host_permissions": [
    "*://*.youtube.com/*"
  ]
}