YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

Wat is YouTube Picture in Picture?

YouTube Picture in Picture is een Chrome-extensie ontwikkeld door https://brunomacedo.com.br, en de belangrijkste functie is "Float videos from YouTube with native picture-in-picture".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Picture in Picture

Download YouTube Picture in Picture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Float videos from YouTube with native picture-in-picture.                    

Basisinformatie over de Extensie

Naam YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
Officiële URL https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Beschrijving Float videos from YouTube with native picture-in-picture
Bestandsgrootte 105 KB
Aantal Installaties 1,000
Huidige Versie 1.1.4
Laatst Bijgewerkt 2019-03-18
Publicatiedatum 2019-03-15
Beoordeling 3.90/5 Totaal 10 Beoordelingen
Ontwikkelaar https://brunomacedo.com.br
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Picture in Picture",
    "short_name": "Float Video",
    "description": "Float videos from YouTube with native picture-in-picture",
    "author": "Bruno Macedo",
    "version": "1.1.4",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "picture-in-picture.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "picture-in-picture.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Float Video",
        "default_popup": "picture-in-picture.html"
    }
}