PiP Anywhere

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

Apa itu PiP Anywhere?

PiP Anywhere adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Allows activating picture in picture mode from html5 players that block right click".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi PiP Anywhere

Unduh file ekstensi PiP Anywhere dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
URL Resmi https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Deskripsi Allows activating picture in picture mode from html5 players that block right click
Ukuran File 5.14 KB
Jumlah Instalasi 25
Versi Saat Ini 1.2
Terakhir Diperbarui 2019-01-05
Tanggal Publikasi 2019-01-05
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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
        }
    ]
}