Movie Subtitles

Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!
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",
  "description": "Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!",
  "version": "1.8.1",
  "name": "Movie Subtitles",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "movie-subtitles-38.png"
  },
  "icons": {
    "16": "movie-subtitles-16.png",
    "48": "movie-subtitles-48.png",
    "128": "movie-subtitles-128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}