PiP Sync
Toggle synced Picture in Picture content on YouTube with the click of a button.
Τι είναι το PiP Sync;
Το PiP Sync είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pipsync.org, και η κύρια λειτουργία του είναι "Toggle synced Picture in Picture content on YouTube with the click of a button.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης PiP Sync
Λήψη αρχείων επέκτασης PiP Sync σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Toggling signed interpretations on YouTube at the click of a button. * NEW in Version 1.0.7 * Various bug fixes and improvements. * How It Works * Video creators and companies who wish to add deaf and hard of hearing accessibility to their videos commission an interpretation via pipsync.org. Once the interpretation is complete, we registered the videos in our extensions database, allowing anyone who uses the extension to toggle the interpretation with the click of a button. * How to Get It * Install the extension into your Chrome browser. Once installed, all the interpreted content in our database will automatically appear and sync in your YouTube player! * Which Videos? * PiP Sync is only enabled for content that has been commissioned through our organization. If there are videos that you wish to have interpreted, refer them to us at pipsync.org and we can work together to get the video/s interpreted and registered in our database. As soon as the video is finished and linked to our extension, it will become available for all users.
Βασικές Πληροφορίες Επέκτασης
Όνομα | PiP Sync |
ID | eobmhiaecmokgigkhiaoedceiejagdji |
Επίσημο URL | https://chromewebstore.google.com/detail/pip-sync/eobmhiaecmokgigkhiaoedceiejagdji |
Περιγραφή | Toggle synced Picture in Picture content on YouTube with the click of a button. |
Μέγεθος Αρχείου | 115 KB |
Αριθμός Εγκαταστάσεων | 26 |
Τρέχουσα Έκδοση | 1.0.7 |
Τελευταία Ενημέρωση | 2022-01-03 |
Ημερομηνία Δημοσίευσης | 2020-06-27 |
Προγραμματιστής | https://pipsync.org |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://pipsync.org |
Διεύθυνση URL της Σελίδας Βοήθειας | https://pipsync.org/contact |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PiP Sync", "version": "1.0.7", "description": "Toggle synced Picture in Picture content on YouTube with the click of a button.", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "exclude_matches": [ "https:\/\/www.youtube.com\/embed\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "storage" ], "background": { "page": "background.html", "persistant": true }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "popup\/popup.html", "default_title": "PiP Sync" }, "web_accessible_resources": [ "script.js", "images\/*.png" ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com\/ https:\/\/apis.google.com https:\/\/www.youtube.com\/iframe_api https:\/\/s.ytimg.com\/yts\/jsbin\/www-widgetapi-vfln21F5R\/www-widgetapi.js https:\/\/www.googletagmanager.com; object-src 'self'; frame-src *; img-src *" } |