Zoom Video - UltraWide Video

Zoom Video - UltraWide Video

Zoom video and change aspect ratio of any video, removing black bars on Netflix, Amazon Prime, YouTube and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.1",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/js/contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "commands": {
    "+": {
      "description": "Increase zoom ( + )",
      "suggested_key": {
        "default": "Ctrl+Up",
        "mac": "Command+Shift+Up"
      }
    },
    "-": {
      "description": "Decrease zoom ( - )",
      "suggested_key": {
        "default": "Ctrl+Down",
        "mac": "Command+Shift+Down"
      }
    },
    "16:9": {
      "description": "16:9 Aspect Ratio"
    },
    "18:9": {
      "description": "18:9 Aspect Ratio"
    },
    "21:9": {
      "description": "21:9 Aspect Ratio"
    },
    "32:9": {
      "description": "32:9 Aspect Ratio"
    },
    "auto/reset": {
      "description": "Auto/Reset Aspect Ratio"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}