UltraWideo

UltraWideo

The cross-browser extension that manipulates video aspect ratio to fit your entire screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "3.1.0",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/content-scripts/inject.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "commands": {
    "toggle_activity": {
      "suggested_key": {
        "default": "Alt+Shift+X",
        "mac": "MacCtrl+Command+X"
      },
      "description": "__MSG_activity_sr__"
    },
    "toggle_mode": {
      "suggested_key": {
        "default": "Alt+Shift+Z",
        "mac": "MacCtrl+Command+Z"
      },
      "description": "__MSG_mode_sr__"
    },
    "increment_x": {
      "description": "__MSG_increment_x_sr__"
    },
    "decrement_x": {
      "description": "__MSG_decrement_x_sr__"
    },
    "increment_y": {
      "description": "__MSG_increment_y_sr__"
    },
    "decrement_y": {
      "description": "__MSG_decrement_y_sr__"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Period",
        "mac": "MacCtrl+Command+Period"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "UltraWideo",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "css": [
        "content-scripts/inject.css"
      ],
      "js": [
        "content-scripts/inject.js"
      ]
    }
  ]
}