Double Subtitles for Paramount by MovieLingo

Double Subtitles for Paramount by MovieLingo

Extension allows for displaying additional subtitles above the standard Paramount ones.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.1",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.paramountplus.com/*",
    "https://translate.googleapis.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "doubleP128.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "content.js"
      ],
      "matches": [
        "*://*.paramountplus.com/*"
      ],
      "css": [
        "injectedCss.css"
      ]
    }
  ],
  "icons": {
    "36": "doubleP36.png",
    "128": "doubleP128.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}