Random YouTube Video

Random YouTube Video

Customize, shuffle and play random videos from any YouTube channel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Random YouTube Video",
  "description": "Customize, shuffle and play random videos from any YouTube channel.",
  "version": "3.1.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon-16-red.png",
      "32": "icons/icon-32-red.png",
      "48": "icons/icon-48-red.png",
      "128": "icons/icon-128-red.png"
    }
  },
  "icons": {
    "16": "icons/icon-16-red.png",
    "32": "icons/icon-32-red.png",
    "48": "icons/icon-48-red.png",
    "128": "icons/icon-128-red.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "html/popup.html"
}