Movie Subtitles

Movie Subtitles

Add your own subtitles almost anywhere you want such as Disney, Netflix, YouTube and many more!

Merlin
Additional files are visible only to premium users

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>"
      ]
    }
  ]
}