Enhanced Floating Video Player (PIP)

Enhanced Floating Video Player (PIP)

A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enhanced Floating Video Player (PIP)",
  "version": "2.0.2",
  "manifest_version": 2,
  "description": "A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/pip_logic.js"
      ]
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/sites_integration/youtube.js"
      ]
    },
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "js/sites_integration/netflix.js"
      ]
    },
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "js/sites_integration/twitch.js"
      ]
    }
  ],
  "icons": {
    "128": "Icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "js/pip_logic.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {}
}