Video picture in picture

Video picture in picture

Hvad er Video picture in picture?

Video picture in picture er en Chrome-udvidelse udviklet af Oscar de Dios, og dens hovedfunktion er "Video picture in picture".

Udvidelsesskærmbilleder

screenshot

Download Video picture in picture-udvidelses-CRX-fil

Download Video picture in picture-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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/                    

Grundlæggende oplysninger om udvidelsen

Navn Video picture in picture Video picture in picture
ID bfncjmnhlgddppdmogacohjjieiahelp
Officiel URL https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp
Beskrivelse Video picture in picture
Filstørrelse 5.87 KB
Antal Installationer 578
Nuværende Version 1.1
Senest Opdateret 2019-03-21
Udgivelsesdato 2019-03-16
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Oscar de Dios
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.noteboardapp.com/policy
Understøttede Sprog 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:\/\/*\/*"
    ]
}