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是由d4nshields開發的Chrome擴展程式,該擴展的主要功能是“Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.”。
擴展截圖
下載RightSpeed for YouTube擴展crx文件
下載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 |
官方網址 | 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'" } |