Netflix Video Bender: rotate and zoom video

Netflix Video Bender: rotate and zoom video

Extension to rotate the screen while watching Netflix. 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": "Netflix Video Bender: rotate and zoom video",
  "description": "Extension to rotate the screen while watching Netflix. You can also zoom video in and out according to preferences.",
  "version": "1.0.2",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.netflix.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "VideoBender36Netflix.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ],
  "icons": {
    "36": "VideoBender36Netflix.png",
    "128": "VideoBender128Netflix.png"
  }
}