Udacity Playback Rate

Control playback rate of Udacity videos.

Was ist Udacity Playback Rate?

Udacity Playback Rate ist eine Chrome-Erweiterung, die von herman entwickelt wurde, und ihr Hauptmerkmal ist "Control playback rate of Udacity videos.".

Erweiterungsscreenshots

screenshot

Udacity Playback Rate-Erweiterungs-CRX-Datei herunterladen

Laden Sie Udacity Playback Rate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
Offizielle URL https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
Beschreibung Control playback rate of Udacity videos.
Dateigröße 28.21 KB
Installationsanzahl 146
Aktuelle Version 0.8
Letztes Update 2014-01-23
Veröffentlichungsdatum 2014-01-23
Bewertung 3.13/5 Insgesamt 15 Bewertungen
Entwickler herman
Zahlungsart free
Erweiterungswebsite https://github.com/has207/udacity-playback-chrome-extension
Hilfeseite URL https://github.com/has207/udacity-playback-chrome-extension/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}