Picture in Picture
Provide PIP function for Youtube, Bilibili and so on.
Was ist Picture in Picture?
Picture in Picture ist eine Chrome-Erweiterung, die von https://www.johnzhang.xyz entwickelt wurde, und ihr Hauptmerkmal ist "Provide PIP function for Youtube, Bilibili and so on.".
Erweiterungsscreenshots
Picture in Picture-Erweiterungs-CRX-Datei herunterladen
Laden Sie 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
Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on.
Grundlegende Informationen zur Erweiterung
Name | |
ID | macihajaciflkkmodijnkfjmpikhjepe |
Offizielle URL | https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe |
Beschreibung | Provide PIP function for Youtube, Bilibili and so on. |
Dateigröße | 57.96 KB |
Installationsanzahl | 305 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-02-01 |
Veröffentlichungsdatum | 2019-01-28 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://www.johnzhang.xyz |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "css": [ "sites\/youtube\/pip.css" ], "js": [ "sites\/youtube\/pip.js" ], "all_frames": true, "run_at": "document_start", "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "description": "Provide PIP function for Youtube, Bilibili and so on.", "name": "Picture in Picture", "version": "1.0", "manifest_version": 2, "browser_action": { "default_icon": "assets\/pip512.png" }, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "assets\/pip48.png", "128": "assets\/pip128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+P", "mac": "Alt+P", "chromeos": "Alt+P", "linux": "Alt+P" } } }, "permissions": [ "tabs", " |