Udacity Playback Rate

Control playback rate of Udacity videos.

Co je Udacity Playback Rate?

Udacity Playback Rate je rozšíření Chrome vyvinuté herman, a jeho hlavní funkcí je „Control playback rate of Udacity videos.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Udacity Playback Rate

Stáhněte si soubory rozšíření Udacity Playback Rate ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
Oficiální URL https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
Popis Control playback rate of Udacity videos.
Velikost souboru 28.21 KB
Počet instalací 146
Aktuální Verze 0.8
Poslední Aktualizace 2014-01-23
Datum Vydání 2014-01-23
Hodnocení 3.13/5 Celkem 15 Hodnocení
Vývojář herman
Typ Platby free
Webové stránky Rozšíření https://github.com/has207/udacity-playback-chrome-extension
URL Stránky Nápovědy https://github.com/has207/udacity-playback-chrome-extension/issues
Podporované Jazyky 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"
            ]
        }
    ]
}