Floating Player - PiP Mode

Floating Player - PiP Mode

Watch videos in a floating window (Picture-in-Picture Mode) outside the browser window or on top of any other application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icon19.png",
      "38": "assets/icon38.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Alt+P",
        "linux": "Alt+P",
        "mac": "Alt+P",
        "windows": "Alt+P"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "floating.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "128": "assets/icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "69.0.0",
  "name": "__MSG_name__",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "short_name": "__MSG_name__",
  "version": "1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}