YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

Apa itu YouTube Picture in Picture?

YouTube Picture in Picture adalah ekstensi Chrome yang dikembangkan oleh https://brunomacedo.com.br, dan fitur utamanya adalah "Float videos from YouTube with native picture-in-picture".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Picture in Picture

Unduh file ekstensi YouTube 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

                        Float videos from YouTube with native picture-in-picture.                    

Informasi Dasar Ekstensi

Nama YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
URL Resmi https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Deskripsi Float videos from YouTube with native picture-in-picture
Ukuran File 105 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.1.4
Terakhir Diperbarui 2019-03-18
Tanggal Publikasi 2019-03-15
Penilaian 3.90/5 Total 10 Penilaian
Pengembang https://brunomacedo.com.br
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}