Video picture in picture

Video picture in picture

Co to jest Video picture in picture?

Video picture in picture to rozszerzenie Chrome opracowane przez Oscar de Dios, a jego główną funkcją jest „Video picture in picture”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Video picture in picture

Pobierz pliki rozszerzeń Video 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

                        Chrome extension to open the video of the active page to picture in picture mode.
It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with 
the video always visible.

The code is in: https://github.com/OscarDeDios/pictureInPictureExtension

The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/                    

Podstawowe informacje o rozszerzeniu

Nazwa Video picture in picture Video picture in picture
ID bfncjmnhlgddppdmogacohjjieiahelp
Oficjalny URL https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp
Opis Video picture in picture
Rozmiar pliku 5.87 KB
Liczba instalacji 578
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2019-03-21
Data Publikacji 2019-03-16
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Oscar de Dios
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.noteboardapp.com/policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video picture in picture",
    "manifest_version": 2,
    "version": "1.1",
    "short_name": "Video picture in picture",
    "icons": {
        "48": "img\/pipVideo.png",
        "128": "img\/pipVideo128.png"
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "img\/pipVideo.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "description": "Video picture in picture",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}