Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Hvad er Picture in Picture?

Picture in Picture er en Chrome-udvidelse udviklet af https://www.johnzhang.xyz, og dens hovedfunktion er "Provide PIP function for Youtube, Bilibili and so on.".

Udvidelsesskærmbilleder

screenshot

Download Picture in Picture-udvidelses-CRX-fil

Download Picture in Picture-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

                        Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on.                    

Grundlæggende oplysninger om udvidelsen

Navn Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
Officiel URL https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Beskrivelse Provide PIP function for Youtube, Bilibili and so on.
Filstørrelse 57.96 KB
Antal Installationer 305
Nuværende Version 1.0
Senest Opdateret 2019-02-01
Udgivelsesdato 2019-01-28
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://www.johnzhang.xyz
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "sites\/youtube\/pip.css"
            ],
            "js": [
                "sites\/youtube\/pip.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "description": "Provide PIP function for Youtube, Bilibili and so on.",
    "name": "Picture in Picture",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "assets\/pip512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "assets\/pip48.png",
        "128": "assets\/pip128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "VJB.css",
        "VJB-finishCSS.css"
    ],
    "minimum_chrome_version": "69.0.3483.0"
}