Video picture in picture
Video picture in picture
Τι είναι το Video picture in picture;
Το Video picture in picture είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Oscar de Dios, και η κύρια λειτουργία του είναι "Video picture in picture".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video picture in picture
Λήψη αρχείων επέκτασης Video picture in picture σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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/
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video picture in picture |
ID | bfncjmnhlgddppdmogacohjjieiahelp |
Επίσημο URL | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
Περιγραφή | Video picture in picture |
Μέγεθος Αρχείου | 5.87 KB |
Αριθμός Εγκαταστάσεων | 578 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2019-03-21 |
Ημερομηνία Δημοσίευσης | 2019-03-16 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Oscar de Dios |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.noteboardapp.com/policy |
Υποστηριζόμενες Γλώσσες | 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:\/\/*\/*" ] } |