Udacity Playback Rate
Control playback rate of Udacity videos.
What is Udacity Playback Rate?
Udacity Playback Rate is a Chrome extension developed by herman, and its main feature is "Control playback rate of Udacity videos.".
Extension Screenshots
Download Udacity Playback Rate Extension CRX File
Download Udacity Playback Rate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allows you to control playback speed of the videos on http://www.udacity.com as well as persist custom speed settings across videos within the same class. Supports multiple classes in different tabs as well as automatic enforcement of HTML5 playback for YouTube embeds (hence the need to access YouTube data). ======================================== File bugs or contribute to this extension on Github: https://github.com/has207/udacity-playback-chrome-extension Icons courtesy of WebIconSet.com -- free to use but not redistribute.
Extension Basic Information
Name | Udacity Playback Rate |
ID | dffchaolhllnibbbkfmiokmbhkcopmfc |
Official URL | https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc |
Description | Control playback rate of Udacity videos. |
File Size | 28.21 KB |
Installation Count | 146 |
Current Version | 0.8 |
Last Updated | 2014-01-23 |
Publish Date | 2014-01-23 |
Rating | 3.13/5 Total 15 Ratings |
Developer | herman |
Payment Type | free |
Extension Website | https://github.com/has207/udacity-playback-chrome-extension |
Help Page URL | https://github.com/has207/udacity-playback-chrome-extension/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Udacity Playback Rate", "version": "0.8", "icons": { "48": "speed48.png", "128": "speed128.png" }, "manifest_version": 2, "description": "Control playback rate of Udacity videos.", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/www.youtube.com\/embed\/*" ], "background": { "scripts": [ "channel.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/embed\/*" ], "js": [ "playback.js" ], "all_frames": true }, { "matches": [ "*:\/\/www.udacity.com\/course\/viewer*" ], "js": [ "button.js" ], "css": [ "button.css" ] } ] } |