PIPsy - PIP out your video player!
Easily pop out any video player into a PIP window.
Τι είναι το PIPsy - PIP out your video player!;
Το PIPsy - PIP out your video player! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Marius Kießling, και η κύρια λειτουργία του είναι "Easily pop out any video player into a PIP window.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης PIPsy - PIP out your video player!
Λήψη αρχείων επέκτασης PIPsy - PIP out your video player! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Chrome 70 introduced the picture in picture (PIP) mode for HTML5 video players. This extension simply takes the functionality offered by Chrome and brings it to websites that don't support it directly. Using this extension you can use PIP on on e.g. these sites: - Netflix - Amazon Prime Video The extension is in an early stage right now. Please feel free to open bug reports in GitHub's issue tracker (https://github.com/mariuskiessling/pipsy). Disclaimer: This extension is not affiliated and/or endorsed by any of the sites above and in the screenshots.
Βασικές Πληροφορίες Επέκτασης
Όνομα | PIPsy - PIP out your video player! |
ID | eifkfjbbngmilpppefdcnocfpdlaipal |
Επίσημο URL | https://chromewebstore.google.com/detail/pipsy-pip-out-your-video/eifkfjbbngmilpppefdcnocfpdlaipal |
Περιγραφή | Easily pop out any video player into a PIP window. |
Μέγεθος Αρχείου | 13.89 KB |
Αριθμός Εγκαταστάσεων | 3,000 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2018-11-29 |
Ημερομηνία Δημοσίευσης | 2018-11-29 |
Αξιολόγηση | 4.15/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | Marius Kießling |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PIPsy - PIP out your video player!", "version": "1.0.2", "manifest_version": 2, "description": "Easily pop out any video player into a PIP window.", "homepage_url": "https:\/\/mariuskiessling.de", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon_19.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.amazon.de\/*", "https:\/\/*.netflix.com\/*", "https:\/\/*.skygo.sky.de\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "src\/pipsy.js" ] } ] } |