Video picture in picture

Video picture in picture

Co je Video picture in picture?

Video picture in picture je rozšíření Chrome vyvinuté Oscar de Dios, a jeho hlavní funkcí je „Video picture in picture“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Video picture in picture

Stáhněte si soubory rozšíření Video picture in picture ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Video picture in picture Video picture in picture
ID bfncjmnhlgddppdmogacohjjieiahelp
Oficiální URL https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp
Popis Video picture in picture
Velikost souboru 5.87 KB
Počet instalací 578
Aktuální Verze 1.1
Poslední Aktualizace 2019-03-21
Datum Vydání 2019-03-16
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Oscar de Dios
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.noteboardapp.com/policy
Podporované Jazyky 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:\/\/*\/*"
    ]
}