Examine source code of UltraWide Video

Inspect and view changes in UltraWide Video 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
{
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDescription__",
  "default_locale": "en",
  "author": "Curly Doggo Limited",
  "homepage_url": "https://ultrawidevideo.com/",
  "version": "1.8.5",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "UltraWide.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": {
      "128": "images/icon.png"
    },
    "default_title": "__MSG_AppName__",
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}