PiP Anywhere

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

Qu'est-ce que PiP Anywhere ?

PiP Anywhere est une extension Chrome développée par Unknown, et sa fonction principale est "Allows activating picture in picture mode from html5 players that block right click".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PiP Anywhere

Téléchargez les fichiers d'extension PiP Anywhere au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
URL Officiel https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Description Allows activating picture in picture mode from html5 players that block right click
Taille du Fichier 5.14 KB
Nombre d'Installations 25
Version Actuelle 1.2
Dernière Mise à Jour 2019-01-05
Date de Publication 2019-01-05
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}