Examine source code of PiP Master

Inspect and view changes in PiP Master 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",
  "description": "This Chrome extension enhances the Picture-in-Picture (PIP) experience by adding advanced video controls.",
  "version": "1.0.0",
  "homepage_url": "https://github.com/misa198/pip-master",
  "manifest_version": 3,
  "name": "PiP Master",
  "icons": {
    "16": "icon/icon16.png",
    "64": "icon/icon64.png",
    "128": "icon/icon128.png"
  },
  "action": {
    "default_title": "Click to show an alert"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "main.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}