Udacity Playback Rate
Control playback rate of Udacity videos.
Qu'est-ce que Udacity Playback Rate ?
Udacity Playback Rate est une extension Chrome développée par herman, et sa fonction principale est "Control playback rate of Udacity videos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Udacity Playback Rate
Téléchargez les fichiers d'extension Udacity Playback Rate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Udacity Playback Rate |
ID | dffchaolhllnibbbkfmiokmbhkcopmfc |
URL Officiel | https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc |
Description | Control playback rate of Udacity videos. |
Taille du Fichier | 28.21 KB |
Nombre d'Installations | 146 |
Version Actuelle | 0.8 |
Dernière Mise à Jour | 2014-01-23 |
Date de Publication | 2014-01-23 |
Évaluation | 3.13/5 Total 15 Évaluations |
Développeur | herman |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/has207/udacity-playback-chrome-extension |
URL de la Page d'Aide | https://github.com/has207/udacity-playback-chrome-extension/issues |
Langues Prises en Charge | 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" ] } ] } |