Video Speed Control
When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are "the only one who decides"!
Τι είναι το Video Speed Control;
Το Video Speed Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://batressc.com, και η κύρια λειτουργία του είναι "When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are "the only one who decides"!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Speed Control
Λήψη αρχείων επέκτασης Video Speed Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Do you need more speed? Video Speed Control is an extension for all Chromium based web browsers, that allows you to control the playback speed of online videos. Whether you need to skip that boring part of your series or advertisements, or want to enjoy that action scene, with Video Speed Control you can make it, since it allows with a high level of precision to increase or decrease the playback speed. It works on most of websites, and yes: It is 100% tested on Youtube. Now you are "the only one who decides"! ======================================================= NEW FEATURES in version 2.0.1 (sunshines) ======================================================= * Global and site-specific speed settings. * Speed management enhancements: Maintains set speed settings even when showing ads or switching videos. * Compatibility with most websites. * Addition of 1.25x preset speed. * Performance improvements and bug fixes. * Credits & donations
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video Speed Control |
ID | nkldafgkfkngellahbdcigfpacpgongm |
Επίσημο URL | https://chromewebstore.google.com/detail/video-speed-control/nkldafgkfkngellahbdcigfpacpgongm |
Περιγραφή | When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are "the only one who decides"! |
Μέγεθος Αρχείου | 227 KB |
Αριθμός Εγκαταστάσεων | 619 |
Τρέχουσα Έκδοση | 2.0.1 sunshines |
Τελευταία Ενημέρωση | 2022-10-17 |
Ημερομηνία Δημοσίευσης | 2021-07-19 |
Αξιολόγηση | 4.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | https://batressc.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://blog.batressc.com/video-speed-control-2-0-1-sunshine |
URL της Σελίδας Πολιτικής Απορρήτου | https://blog.batressc.com/politica-privacidad |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.0.1", "version_name": "2.0.1 sunshines", "name": "Video Speed Control", "short_name": "batressc-vsc", "description": "When speed is not enough! Control the speed of your favorite videos: Slower or faster. You are \"the only one who decides\"!", "author": "Luis Gustavo Fern\u00e1ndez Batres", "homepage_url": "https:\/\/blog.batressc.com\/video-speed-control-2-0-1-sunshine", "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage", "activeTab", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/scripts\/refresh-speed.js" ] } ], "icons": { "16": "\/images\/16x16_video_speed_control.png", "32": "\/images\/32x32_video_speed_control.png", "48": "\/images\/48x48_video_speed_control.png", "128": "\/images\/128x128_video_speed_control.png" }, "action": { "default_popup": "popup-main.html", "default_icon": { "16": "\/images\/16x16_disabled_video_speed_control.png", "32": "\/images\/32x32_disabled_video_speed_control.png", "48": "\/images\/48x48_disabled_video_speed_control.png", "128": "\/images\/128x128_disabled_video_speed_control.png" } } } |