Floating Player

Floating Player

Watch videos while surfing the web with Picture in Picture (PiP) mode. Floating video player for Web!

Merlin
Additional files are visible only to premium users

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.4",
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}