Udacity Playback Rate

Control playback rate of Udacity videos.

Co to jest Udacity Playback Rate?

Udacity Playback Rate to rozszerzenie Chrome opracowane przez herman, a jego główną funkcją jest „Control playback rate of Udacity videos.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Udacity Playback Rate

Pobierz pliki rozszerzeń Udacity Playback Rate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
Oficjalny URL https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
Opis Control playback rate of Udacity videos.
Rozmiar pliku 28.21 KB
Liczba instalacji 146
Aktualna Wersja 0.8
Ostatnia Aktualizacja 2014-01-23
Data Publikacji 2014-01-23
Ocena 3.13/5 Łącznie 15 Oceny
Deweloper herman
Typ Płatności free
Strona Rozszerzenia https://github.com/has207/udacity-playback-chrome-extension
Adres URL Strony Pomocy https://github.com/has207/udacity-playback-chrome-extension/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}