Examine source code of Open Subtitles

Inspect and view changes in Open Subtitles 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": "Open Subtitles",
  "version": "6.3.8",
  "manifest_version": 3,
  "description": "Add subtitles to any HTML5 video sites such as Youtube, Netflix, Amazon Prime Video, Disney+, HBO Max and other stream sites.",
  "author": "Stefan Breitenstein",
  "icons": {
    "16": "res/icons/logo16.png",
    "48": "res/icons/logo48.png",
    "128": "res/icons/logo128.png"
  },
  "action": {
    "default_icon": {
      "16": "res/icons/logo16.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "88",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "https://*/"
  ],
  "permissions": [
    "webNavigation",
    "scripting",
    "storage",
    "activeTab"
  ]
}