Video picture in picture
Video picture in picture
Apa itu Video picture in picture?
Video picture in picture adalah ekstensi Chrome yang dikembangkan oleh Oscar de Dios, dan fitur utamanya adalah "Video picture in picture".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Video picture in picture
Unduh file ekstensi Video picture in picture dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Chrome extension to open the video of the active page to picture in picture mode. It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with the video always visible. The code is in: https://github.com/OscarDeDios/pictureInPictureExtension The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/
Informasi Dasar Ekstensi
Nama | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
URL Resmi | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
Deskripsi | Video picture in picture |
Ukuran File | 5.87 KB |
Jumlah Instalasi | 578 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2019-03-21 |
Tanggal Publikasi | 2019-03-16 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Oscar de Dios |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.noteboardapp.com/policy |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video picture in picture", "manifest_version": 2, "version": "1.1", "short_name": "Video picture in picture", "icons": { "48": "img\/pipVideo.png", "128": "img\/pipVideo128.png" }, "browser_action": { "default_title": "__MSG_extName__", "default_icon": { "19": "img\/pipVideo.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "description": "Video picture in picture", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ] } |