Examine source code of Youtube caption indicator

Inspect and view changes in Youtube caption indicator 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",
  "manifest_version": 2,
  "name": "Youtube caption indicator",
  "short_name": "Youtube caption indicator",
  "version": "0.3.4",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery.min.js",
        "youtube-caption-indicator.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "https://*/*"
  ],
  "applications": {
    "gecko": {
      "id": "youtube-caption-indicator@example.com",
      "strict_min_version": "42.0"
    }
  }
}