PiP Anywhere

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

What is PiP Anywhere?

PiP Anywhere is a Chrome extension developed by Unknown, and its main feature is "Allows activating picture in picture mode from html5 players that block right click".

Extension Screenshots

screenshot

Download PiP Anywhere Extension CRX File

Download PiP Anywhere extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Can be used to activate picture in picture mode for html 5 players that dont allow right click                    

Extension Basic Information

Name PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
Official URL https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Description Allows activating picture in picture mode from html5 players that block right click
File Size 5.14 KB
Installation Count 25
Current Version 1.2
Last Updated 2019-01-05
Publish Date 2019-01-05
Developer Unknown
Payment Type free
Supported Languages en
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
        }
    ]
}