Prime Video Bender: rotate and zoom video

Prime Video Bender: rotate and zoom video

Extension to rotate the screen while watching PrimeVideo. 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": "Prime Video Bender: rotate and zoom video",
  "description": "Extension to rotate the screen while watching PrimeVideo. You can also zoom video in and out according to preferences.",
  "version": "1.1.2",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.primevideo.com/*",
    "*://*.amazon.com/*",
    "*://*.amazon.co.uk/*",
    "*://*.amazon.de/*",
    "*://*.amazon.co.jp/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "VideoBender128Prime.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js"
      ],
      "matches": [
        "*://*.primevideo.com/*",
        "*://*.amazon.com/*",
        "*://*.amazon.co.uk/*",
        "*://*.amazon.de/*",
        "*://*.amazon.co.jp/*"
      ]
    }
  ],
  "icons": {
    "36": "VideoBender36Prime.png",
    "128": "VideoBender128Prime.png"
  }
}