Video Speed Controller
Control the playback speed of HTML5 videos.
Τι είναι το Video Speed Controller;
Το Video Speed Controller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον videospeedcontrol, και η κύρια λειτουργία του είναι "Control the playback speed of HTML5 videos.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Speed Controller
Λήψη αρχείων επέκτασης Video Speed Controller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Video Speed Controller is a lightweight and powerful Chrome extension that allows you to quickly and easily control the playback speed of any HTML5 video player. Whether you're watching videos on YouTube, Netflix, or any other platform, you can now speed up or slow down playback to suit your preferences. Key features: 1. Customizable keyboard shortcuts: Set your desired keys to increase or decrease playback speed, reset speed, rewind or advance the video, and show or hide the speed controller. 2. Save settings per tab, domain, or across all tabs: Choose how you want to save your playback settings. Keep them for a single tab, apply them to a single domain (e.g., YouTube), or make them the default for all tabs. 3. Speed indicator: See the current playback speed in the top left corner of the video player. Hover over the indicator to reveal the controls or use your custom shortcuts. 4. Works on any website with an HTML5 video player: YouTube, Netflix, Vimeo, Facebook, and many more! 5. Easy to use: Install the extension and start using it right away – no need to refresh the page or restart your browser. Instructions for use: 1. Install the Smart Video Speed Controller extension. 2. Navigate to any page with an HTML5 video player. 3. Use the custom keyboard shortcuts or hover over the speed indicator in the top left corner to control playback speed. 4. Click the extension icon in your browser toolbar to access settings and customize your shortcuts or choose how to save your playback settings. Get the most out of your video-watching experience with Smart Video Speed Controller. Enjoy faster or slower playback, depending on your preferences, and easily switch between different speeds with just a few keystrokes. Say goodbye to slow-loading videos and tedious buffering – download Smart Video Speed Controller today!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video Speed Controller |
ID | ohohfdnookdcdddlkponhlbeeknjbpik |
Επίσημο URL | https://chromewebstore.google.com/detail/video-speed-controller/ohohfdnookdcdddlkponhlbeeknjbpik |
Περιγραφή | Control the playback speed of HTML5 videos. |
Μέγεθος Αρχείου | 21.76 KB |
Αριθμός Εγκαταστάσεων | 4,743 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2023-06-22 |
Ημερομηνία Δημοσίευσης | 2023-04-21 |
Αξιολόγηση | 4.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | videospeedcontrol |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Video Speed Controller", "version": "1.0.2", "description": "Control the playback speed of HTML5 videos.", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "48": "icon48.png", "128": "icon128.png" }, "default_width": 300, "default_height": 400 }, "background": { "service_worker": "background.js" }, "options_page": "settings.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |