PiP - Picture in Picture Plus

PiP - Picture in Picture Plus

Pop out video into a PIP Chrome Window. Works on all videos and websites. Watch video using Picture-in-Picture.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "5.6",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAleJUpAmo1fDeu6pAYOVLFUGDsDbJwjC+MkGSAmo31MKUnzodnkto4x+hxBG1Tqc1BVTYtSd+1OaHOxs1JDIjEQuAHokadss8ru/FdAgVU5kUNrk/iN7pGs8YtDNyvJcRj8u51QtHWapmrXat2uj9tEh2qF67QwRsi/OnYyt/V34QHv6jDgdpVMT7c/wlKJGgGN3cuwJvHauHb+Es6PDBs5DyOA6t5SAy/CPjaOe2CH1VmDmlCt9HgB1cBZfh2tUgqhC11TU+byGVf9R5Nc3YEy+2j0E8cl13hUKf6bqiP4h8fofbDvRUhweaaJaRHFfJw4F0p0sBN4NBE4xsHbDC2wIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    }
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "notifications",
    "system.display",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://disneyplus.com/*"
      ],
      "js": [
        "scriptdisplus.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+I",
        "mac": "Alt+I",
        "chromeos": "Alt+I",
        "linux": "Alt+I"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}