PeacockTV Video Bender: rotate & zoom video

PeacockTV Video Bender: rotate & zoom video

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