YouTube Picture in Picture

Float videos from YouTube with native picture-in-picture

Vad är YouTube Picture in Picture?

YouTube Picture in Picture är en Chrome-tillägg utvecklad av https://brunomacedo.com.br, och dess huvudfunktion är "Float videos from YouTube with native picture-in-picture".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Picture in Picture-förlängningens CRX-fil

Ladda ner YouTube Picture in Picture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn YouTube Picture in Picture YouTube Picture in Picture
ID flfgfoknpbdaddimcppfkkhmgckcgoan
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan
Beskrivning Float videos from YouTube with native picture-in-picture
Filstorlek 105 KB
Antal Installationer 1,000
Aktuell Version 1.1.4
Senast Uppdaterad 2019-03-18
Publiceringsdatum 2019-03-15
Betyg 3.90/5 Totalt 10 Betyg
Utvecklare https://brunomacedo.com.br
Betalningssätt free
Stödda Språk 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"
    }
}