Examine source code of Floating Player - PiP Mode

Inspect and view changes in Floating Player - PiP Mode 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",
  "background": {
    "service_worker": "javascript/worker.js"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png",
      "300": "assets/icon300.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "javascript/content.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png",
    "300": "assets/icon300.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "short_name": "__MSG_appName__",
  "version": "1.2.5",
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}