Picture-in-Picture Viewer

Watch video using the Picture-in-Picture API.

Co to jest Picture-in-Picture Viewer?

Picture-in-Picture Viewer to rozszerzenie Chrome opracowane przez https://thorium.rocks, a jego główną funkcją jest „Watch video using the Picture-in-Picture API.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Picture-in-Picture Viewer

Pobierz pliki rozszerzeń Picture-in-Picture Viewer 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

                        A simple Chromium Extension to enable the Picture-in-Picture Web API in Chromium.

It is a fork of https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg with some fixes, and removed Google Analytics tracking.

  - Alex313031                    

Podstawowe informacje o rozszerzeniu

Nazwa Picture-in-Picture Viewer Picture-in-Picture Viewer
ID kgfcmiijchdkbknmjnojfngnapkibkdh
Oficjalny URL https://chromewebstore.google.com/detail/picture-in-picture-viewer/kgfcmiijchdkbknmjnojfngnapkibkdh
Opis Watch video using the Picture-in-Picture API.
Rozmiar pliku 11.12 KB
Liczba instalacji 2,028
Aktualna Wersja 1.12.2
Ostatnia Aktualizacja 2023-09-02
Data Publikacji 2023-04-26
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://thorium.rocks
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Alex313031/picture-in-picture-viewer
Adres URL Strony Pomocy https://github.com/Alex313031/picture-in-picture-viewer/issues
Adres URL Strony Polityki Prywatności https://thorium.rocks/COC.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Viewer",
    "short_name": "PiP Viewer",
    "author": "Alex313031",
    "description": "Watch video using the Picture-in-Picture API.",
    "homepage_url": "https:\/\/github.com\/Alex313031\/picture-in-picture-viewer",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "offline_enabled": true,
    "version": "1.12.2",
    "version_name": "1.12.2",
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png",
        "256": "assets\/icon256.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}