YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

Qu'est-ce que YouTube Picture in Picture ?

YouTube Picture in Picture est une extension Chrome développée par https://brunomacedo.com.br, et sa fonction principale est "Float videos from YouTube with native picture-in-picture".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Picture in Picture

Téléchargez les fichiers d'extension YouTube Picture in Picture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
URL Officiel https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Description Float videos from YouTube with native picture-in-picture
Taille du Fichier 105 KB
Nombre d'Installations 1,000
Version Actuelle 1.1.4
Dernière Mise à Jour 2019-03-18
Date de Publication 2019-03-15
Évaluation 3.90/5 Total 10 Évaluations
Développeur https://brunomacedo.com.br
Type de Paiement free
Langues Prises en Charge 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"
    }
}