Udacity Playback Rate

Control playback rate of Udacity videos.

Cos'è Udacity Playback Rate?

Udacity Playback Rate è un'estensione di Chrome sviluppata da herman, e la sua funzione principale è "Control playback rate of Udacity videos.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Udacity Playback Rate

Scarica i file di estensione Udacity Playback Rate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
URL Ufficiale https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
Descrizione Control playback rate of Udacity videos.
Dimensione del File 28.21 KB
Conteggio Installazioni 146
Versione Corrente 0.8
Ultimo Aggiornamento 2014-01-23
Data di Pubblicazione 2014-01-23
Valutazione 3.13/5 Totale 15 Valutazioni
Sviluppatore herman
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/has207/udacity-playback-chrome-extension
URL della Pagina di Aiuto https://github.com/has207/udacity-playback-chrome-extension/issues
Lingue Supportate 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"
            ]
        }
    ]
}