Double Subtitles for HBO Max by MovieLingo

Double Subtitles for HBO Max by MovieLingo

Extension allows for displaying additional subtitles above the standard HBO 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.5",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.max.com/*",
    "*://*.hbomax.com/*",
    "https://translate.googleapis.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "Double128HBO.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js"
      ],
      "matches": [
        "*://*.hbomax.com/*"
      ],
      "css": [
        "injectedCss.css"
      ]
    },
    {
      "js": [
        "options.js",
        "engineMax.js"
      ],
      "matches": [
        "*://*.max.com/*"
      ],
      "css": [
        "injectedCss.css"
      ]
    }
  ],
  "icons": {
    "48": "Double48HBO.png",
    "128": "Double128HBO.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}