PiP Anywhere

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

Hvad er PiP Anywhere?

PiP Anywhere er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Allows activating picture in picture mode from html5 players that block right click".

Udvidelsesskærmbilleder

screenshot

Download PiP Anywhere-udvidelses-CRX-fil

Download PiP Anywhere-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
Officiel URL https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Beskrivelse Allows activating picture in picture mode from html5 players that block right click
Filstørrelse 5.14 KB
Antal Installationer 25
Nuværende Version 1.2
Senest Opdateret 2019-01-05
Udgivelsesdato 2019-01-05
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}