Video Duration for YouTube™
Adjust YouTube video playback speed, save time, and navigate with ease.
Τι είναι το Video Duration for YouTube™;
Το Video Duration for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Liyche, και η κύρια λειτουργία του είναι "Adjust YouTube video playback speed, save time, and navigate with ease.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Duration for YouTube™
Λήψη αρχείων επέκτασης Video Duration for YouTube™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Whether you want to speed up a lecture or slow down a tutorial, "Video Duration for YouTube™" gives you full control over your video viewing experience. With this extension, you can easily try out different speeds and see how much time you could save or add based on your selection. Also, the remaining video length is shown so you can plan your viewing time more efficiently. ⚡️ Features ⚡️ - Adjust video playback speed beyond 2x, or jump to 1x - Find out how much time will be saved or added comparing to watching in 1x speed - Know how long it takes to watch the rest of the video at current speed - Know your YouTube Shorts: know video length, change video speed, skip through video - Continue using your favorite shortcuts already provided by YouTube - Tailor the extension to your liking with settings 💥 Keyboard shortcuts 💥 Works with any keyboard layouts. Here are the QWERTY shortcuts for reference: Change Speed: A / D Jump to x1 speed: S Restart video: R Rewind / advance 10 seconds: J / L Play / pause: K Mute / unmute: M 🚨 Future Release 🚨 Please use the support form to report problems, request features, and make suggestions. If this extension is helpful to you, please leave a rating or review so more people can find it. Thank you for your support!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video Duration for YouTube™ |
ID | djphelnkeombgogeophphofmjkbooofh |
Επίσημο URL | https://chromewebstore.google.com/detail/video-duration-for-youtub/djphelnkeombgogeophphofmjkbooofh |
Περιγραφή | Adjust YouTube video playback speed, save time, and navigate with ease. |
Μέγεθος Αρχείου | 267 KB |
Αριθμός Εγκαταστάσεων | 133 |
Τρέχουσα Έκδοση | 1.0.7.2 |
Τελευταία Ενημέρωση | 2024-02-18 |
Ημερομηνία Δημοσίευσης | 2022-05-04 |
Αξιολόγηση | 4.50/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Liyche |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Duration for YouTube\u2122", "version": "1.0.7.2", "description": "Adjust YouTube video playback speed, save time, and navigate with ease.", "manifest_version": 3, "author": "liyche", "permissions": [ "activeTab", "declarativeContent", "commands", "scripting", "storage" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "index.html", "default_title": "YouTube Video Duration", "default_icon": { "16": "\/icons\/speedCalc16.png", "32": "\/icons\/speedCalc32.png", "48": "\/icons\/speedCalc48.png", "128": "\/icons\/speedCalc128.png" } }, "icons": { "16": "\/icons\/speedCalc16.png", "32": "\/icons\/speedCalc32.png", "48": "\/icons\/speedCalc48.png", "128": "\/icons\/speedCalc128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+S" } } }, "web_accessible_resources": [ { "resources": [ "images\/*.png" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |