Floating Video Player

Floating Video Player

Enjoy web surfing with Picture-in-Picture (PiP) mode. Embrace the convenience of a floating video player for the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png",
      "300": "images/icon300.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "300": "images/icon300.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "name": "__MSG_appName__",
  "version": "1.4.12",
  "web_accessible_resources": [
    {
      "resources": [
        "/badge_icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}