Examine source code of Picture in Picture

Inspect and view changes in 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Picture in Picture for video on any site.",
  "version": "1.1.0",
  "manifest_version": 3,
  "name": "Picture in Picture",
  "homepage_url": "https://betelgeuseas.github.io/extensions/",
  "action": {
    "default_title": "Picture in Picture (Ctrl+M)",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+M"
      }
    }
  }
}