Hulu Video Bender: rotate and zoom video

Hulu Video Bender: rotate and zoom video

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