YouTube Picture in Picture
Float videos from YouTube with native picture-in-picture
Hvad er YouTube Picture in Picture?
YouTube Picture in Picture er en Chrome-udvidelse udviklet af https://brunomacedo.com.br, og dens hovedfunktion er "Float videos from YouTube with native picture-in-picture".
Udvidelsesskærmbilleder
Download YouTube Picture in Picture-udvidelses-CRX-fil
Download YouTube 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
Float videos from YouTube with native picture-in-picture.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | flfgfoknpbdaddimcppfkkhmgckcgoan |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-picture-in-pictur/flfgfoknpbdaddimcppfkkhmgckcgoan |
Beskrivelse | Float videos from YouTube with native picture-in-picture |
Filstørrelse | 105 KB |
Antal Installationer | 1,000 |
Nuværende Version | 1.1.4 |
Senest Opdateret | 2019-03-18 |
Udgivelsesdato | 2019-03-15 |
Bedømmelse | 3.90/5 Samlet 10 Bedømmelser |
Udvikler | https://brunomacedo.com.br |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |