Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

Apa itu Picture in Picture?

Picture in Picture adalah ekstensi Chrome yang dikembangkan oleh maniac, dan fitur utamanya adalah "Allows switch to picture in picture mode for sites where blocked right mouse click".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Picture in Picture

Unduh file ekstensi Picture in Picture 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

                                            

Informasi Dasar Ekstensi

Nama Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
URL Resmi https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Deskripsi Allows switch to picture in picture mode for sites where blocked right mouse click
Ukuran File 19.24 KB
Jumlah Instalasi 15
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2018-12-20
Tanggal Publikasi 2018-12-18
Penilaian 5.00/5 Total 1 Penilaian
Pengembang maniac
Tipe Pembayaran free
Situs Ekstensi https://github.com/the-maniac/picture-in-picture
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}