UltraWide Video

UltraWide Video

Allows wider than average screens (eg.21:9) to play online video content and fit the screen properly in fullscreen mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UltraWide Video",
  "version": "1.7.5",
  "description": "Allows wider than average screens (eg.21:9) to play online video content and fit the screen properly in fullscreen mode.",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/UltraWide.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "UltraWide Video",
    "default_popup": "client/popup.html"
  }
}