Examine source code of Ultrawidify

Inspect and view changes in Ultrawidify source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ultrawidify",
  "description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
  "version": "6.2.4",
  "icons": {
    "32": "res/icons/uw-32.png",
    "64": "res/icons/uw-64.png"
  },
  "action": {
    "default_title": "Ultrawidify",
    "default_popup": "csui/csui-popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "common/lib/browser-polyfill.js",
        "ext/uw.js"
      ],
      "all_frames": true
    }
  ],
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "uw-bg.js",
    "module": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "./*",
        "ext/*",
        "res/fonts/*",
        "res/css/*",
        "res/img/settings/about-bg.png",
        "res/icons/*",
        "res/img/*",
        "csui/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "optional_permissions": []
}