Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Wat is Picture in Picture?

Picture in Picture is een Chrome-extensie ontwikkeld door https://www.johnzhang.xyz, en de belangrijkste functie is "Provide PIP function for Youtube, Bilibili and so on.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Picture in Picture

Download Picture in Picture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
Officiële URL https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Beschrijving Provide PIP function for Youtube, Bilibili and so on.
Bestandsgrootte 57.96 KB
Aantal Installaties 305
Huidige Versie 1.0
Laatst Bijgewerkt 2019-02-01
Publicatiedatum 2019-01-28
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.johnzhang.xyz
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}