HBOMax Video Bender: rotate and zoom video

HBOMax Video Bender: rotate and zoom video

Extension to rotate the screen while watching HBO Max. You can also zoom video in and out according to preferences.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HBOMax Video Bender: rotate and zoom video",
  "description": "Extension to rotate the screen while watching HBO Max. You can also zoom video in and out according to preferences.",
  "version": "1.0.14",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.hbomax.com/*",
    "*://*.max.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "VideoBender36HBO.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js"
      ],
      "matches": [
        "*://*.hbomax.com/*",
        "*://*.max.com/*"
      ]
    },
    {
      "js": [
        "hbomax.min.js"
      ],
      "matches": [
        "*://*.hbomax.com/*"
      ]
    },
    {
      "js": [
        "max.min.js"
      ],
      "matches": [
        "*://*.max.com/*"
      ]
    }
  ],
  "icons": {
    "36": "VideoBender36HBO.png",
    "128": "VideoBender128HBO.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}