Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Vad är Picture in Picture?

Picture in Picture är en Chrome-tillägg utvecklad av https://www.johnzhang.xyz, och dess huvudfunktion är "Provide PIP function for Youtube, Bilibili and so on.".

Tilläggsskärmbilder

screenshot

Ladda ner Picture in Picture-förlängningens CRX-fil

Ladda ner Picture in Picture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
Officiell webbadress https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Beskrivning Provide PIP function for Youtube, Bilibili and so on.
Filstorlek 57.96 KB
Antal Installationer 305
Aktuell Version 1.0
Senast Uppdaterad 2019-02-01
Publiceringsdatum 2019-01-28
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://www.johnzhang.xyz
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
}