YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

Was ist YouTube Picture in Picture?

YouTube Picture in Picture ist eine Chrome-Erweiterung, die von https://brunomacedo.com.br entwickelt wurde, und ihr Hauptmerkmal ist "Float videos from YouTube with native picture-in-picture".

Erweiterungsscreenshots

screenshot

YouTube Picture in Picture-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Picture in Picture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
Offizielle URL https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Beschreibung Float videos from YouTube with native picture-in-picture
Dateigröße 105 KB
Installationsanzahl 1,000
Aktuelle Version 1.1.4
Letztes Update 2019-03-18
Veröffentlichungsdatum 2019-03-15
Bewertung 3.90/5 Insgesamt 10 Bewertungen
Entwickler https://brunomacedo.com.br
Zahlungsart free
Unterstützte Sprachen 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"
    }
}