Examine source code of Outside YouTube Player Bar

Inspect and view changes in Outside YouTube Player Bar source codes across current and past versions
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": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "4.1.6",
  "short_name": "__MSG_appShortName__",
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "/images/icon-16.png",
      "32": "/images/icon-32.png",
      "48": "/images/icon-48.png",
      "128": "/images/icon-128.png"
    },
    "default_title": "__MSG_browserActionTitle__"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "youtube-mainworld.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "resources": [
        "content-scripts/youtube.css"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content-scripts/youtube.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}