HBO Max Extended: tools to fix HBO

HBO Max Extended: tools to fix HBO

Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HBO Max Extended: tools to fix HBO",
  "description": "Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles.",
  "version": "1.3.27",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.hbomax.com/*",
    "*://*.max.com/*"
  ],
  "action": {
    "default_icon": "hbo-extended.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "extensionEngine.js",
        "injectedEngine.js",
        "hbomax.min.js"
      ],
      "css": [
        "injected.css",
        "modalFrame.css",
        "otherCssFromExtension.css"
      ],
      "matches": [
        "*://*.hbomax.com/*"
      ]
    },
    {
      "js": [
        "options.js",
        "extensionEngine.js",
        "injectedEngine.js",
        "max.min.js"
      ],
      "css": [
        "injected.css",
        "modalFrame.css",
        "otherCssFromExtension.css"
      ],
      "matches": [
        "*://*.max.com/*"
      ]
    }
  ],
  "icons": {
    "128": "hbo-extended.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "hbo-extended.png",
        "bubble.svg",
        "times-solid.svg",
        "play_default.png"
      ],
      "matches": [
        "*://*.hbomax.com/*",
        "*://*.max.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "hboExtensionBackground.js"
  }
}