Examine source code of YouTube Transcript - Translate YouTube/TED videos & Subtitles Player

Inspect and view changes in YouTube Transcript - Translate YouTube/TED videos & Subtitles Player 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_default_title__",
  "version": "1.0.7",
  "description": "__MSG_description__",
  "default_locale": "en",
  "action": {
    "default_icon": "./static/logo.png",
    "default_popup": "./dist/popup/index.html"
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./static/logo.png",
    "48": "./static/logo.png",
    "128": "./static/logo.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.youtube.com/*",
    "*://*.youtube-nocookie.com/*",
    "*://*.ted.com/*",
    "*://*.vkvideo.ru/*",
    "*://*.aitransdub.com/*",
    "*://*.coursera.org/*",
    "*://*.edx.org/*",
    "*://*.deeplearning.ai/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtube-nocookie.com/*",
        "*://*.ted.com/*",
        "*://*.vkvideo.ru/*",
        "*://*.aitransdub.com/*",
        "*://*.coursera.org/*",
        "*://*.edx.org/*",
        "*://*.deeplearning.ai/*"
      ],
      "js": [
        "dist/contentScripts/index.global.js"
      ],
      "css": [
        "dist/contentScripts/style.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css",
        "/static/*"
      ],
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtube-nocookie.com/*",
        "*://*.ted.com/*",
        "*://*.vkvideo.ru/*",
        "*://*.aitransdub.com/*",
        "*://*.coursera.org/*",
        "*://*.edx.org/*",
        "*://*.deeplearning.ai/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}