YouTube - Embed Swap

YouTube - Embed Swap

Swaps out the YouTube player with an embedded player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "author": "Polymer Mallard",
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "shared/style/app/google.css",
        "shared/style/app/plugin.css"
      ],
      "js": [
        "shared/script/app/helpers.js",
        "shared/script/app/app.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "Swaps out the YouTube player with an embedded player.",
  "homepage_url": "https://www.polymermallard.com",
  "host_permissions": [
    "https://*.youtube.com/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 3,
  "name": "YouTube - Embed Swap",
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "version": "0.2.0",
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "resources": [
        "shared/image/youtube-logo-new.svg"
      ]
    }
  ]
}