Aspect Ratio 21:9

Aspect Ratio 21:9

Adjust the Fit Screen mode on any ultrawide monitor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "version": "1.5.2",
  "author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
  "browser_action": {
    "default_icon": "images/icon_app_128x128.png",
    "default_title": "Aspect Ratio 21:9",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "default_locale": "en",
  "icons": {
    "128": "images/icon_app_128x128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/commands.min.js"
    ],
    "persistent": false
  },
  "commands": {
    "toggle-fullscreen-mode": {
      "global": true,
      "description": "Toggle \"only in fullscreenmode\""
    },
    "toggle-force-default": {
      "global": true,
      "description": "Force 16:9 aspect ratio"
    },
    "toggle-force-219": {
      "global": true,
      "description": "Force 21:9 aspect ratio"
    },
    "toggle-force-329": {
      "global": true,
      "description": "Force 32:9 aspect ratio"
    },
    "toggle-force-custom": {
      "global": true,
      "description": "Force CUSTOM aspect ratio"
    },
    "toggle-stretch": {
      "global": true,
      "description": "Force stretch mode"
    },
    "toggle-crop": {
      "global": true,
      "description": "Force crop/zoom mode"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/video.min.js"
      ],
      "all_frames": true
    }
  ]
}