Examine source code of Online Subtitles

Inspect and view changes in Online 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",
  "manifest_version": 3,
  "name": "Online Subtitles",
  "short_name": "OnlineSub",
  "description": "Watch your favorite movies and shows online with subtitles.",
  "version": "0.1.8",
  "author": "Ivan Oliinychenko",
  "action": {
    "default_icon": {
      "16": "icon.png",
      "24": "icon.png",
      "32": "icon.png"
    },
    "default_popup": "onlineSub.html"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/settings.svg",
        "images/upload.svg",
        "icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "onlineSubBackground.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "onlineSubcontent.js"
      ],
      "css": [
        "onlineSub.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}