Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

Co to jest Picture in Picture?

Picture in Picture to rozszerzenie Chrome opracowane przez https://www.johnzhang.xyz, a jego główną funkcją jest „Provide PIP function for Youtube, Bilibili and so on.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Picture in Picture

Pobierz pliki rozszerzeń Picture in Picture w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
Oficjalny URL https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Opis Provide PIP function for Youtube, Bilibili and so on.
Rozmiar pliku 57.96 KB
Liczba instalacji 305
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-02-01
Data Publikacji 2019-01-28
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://www.johnzhang.xyz
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
}