PiP Anywhere

PiP Anywhere

Allows activating picture in picture mode from html5 players that block right click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PiP Anywhere",
  "version": "1.2",
  "description": "Allows activating picture in picture mode from html5 players that block right click",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/watch/*",
        "https://tiwi.kiwi/*",
        "https://mp4upload.com/*",
        "https://streamango.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ]
}