Examine source code of uView Floating Player - Picture in Picture

Inspect and view changes in uView Floating Player - Picture in Picture 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,
  "short_name": "uView Extension",
  "name": "__MSG_extensionName__",
  "version": "6.0.1",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "assets/icons/icon16.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "webRequest",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/**/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "128": "assets/icons/icon128.png"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}