Examine source code of Better Subtitles for YouTube

Inspect and view changes in Better Subtitles for YouTube 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Better Subtitles for YouTube",
  "description": "Add better closed captions to YouTube videos.",
  "version": "0.0.2",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ]
}