RightSpeed for YouTube
Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.
Τι είναι το RightSpeed for YouTube;
Το RightSpeed for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον d4nshields, και η κύρια λειτουργία του είναι "Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης RightSpeed for YouTube
Λήψη αρχείων επέκτασης RightSpeed for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
While watching YouTube videos, you may change the speed of playback via a slider on the left side of the video window. Videos may be sped up to 4 times normal speed, and slowed down to half normal speed. Great for enhancing the detail of difficult technical tutorials, speed-learning, and even cramming for exams. RightSpeed is an essential for the learner's toolbox. Watch lectures at double speed, then switch to slow-motion for the complicated bits. Once you've appreciated the advantages of tuning video to the rate of your auditory perception, it's a feature you will favour, so please rate this extension highly and share it with your friends.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | flibmeaimaamdoldglmbcooncgjedblo |
Επίσημο URL | https://chrome.google.com/webstore/detail/rightspeed-for-youtube/flibmeaimaamdoldglmbcooncgjedblo |
Περιγραφή | Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed. |
Μέγεθος Αρχείου | 271 KB |
Αριθμός Εγκαταστάσεων | 380 |
Τρέχουσα Έκδοση | 0.0.4.3 |
Τελευταία Ενημέρωση | 2019-04-06 |
Ημερομηνία Δημοσίευσης | 2019-04-06 |
Αξιολόγηση | 4.13/5 Συνολικά 31 Αξιολογήσεις |
Προγραμματιστής | d4nshields |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/d4nshields/rightspeed |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/d4nshields/rightspeed/blob/master/privacy-policy.md |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RightSpeed for YouTube", "short_name": "rightspeed", "description": "Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.", "version": "0.0.4.3", "icons": { "16": "stopwatch-small-128.png", "19": "stopwatch-small-128.png", "48": "stopwatch-small-128.png", "128": "stopwatch-small-128.png" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.min.js", "jquery-ui.js", "ga-config.js", "myscript.js" ], "run_at": "document_end", "all_frames": true } ], "browser_action": { "default_icon": { "16": "stopwatch-small-128.png", "19": "stopwatch-small-128.png", "48": "stopwatch-small-128.png", "128": "stopwatch-small-128.png" }, "default_title": " RightSpeed for YouTube", "default_popup": "popup.html" }, "permissions": [ "storage", "cookies", "*:\/\/*.youtube.com\/*" ], "web_accessible_resources": [ "BTTF.ttf", "stop-watch-icon.png", "background.js", "jquery-ui.css", "spdr-styles.css", "jquery.min.js", "jquery-ui.js", "myscript.js", "commLink.js", "stopwatch-top.png", "button_instant_replay.png", "images\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |