Udacity Playback Rate

Control playback rate of Udacity videos.

Udacity Playback Rate란 무엇입니까?

Udacity Playback Rate은(는) herman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control playback rate of Udacity videos."입니다.

확장 프로그램 스크린샷

screenshot

Udacity Playback Rate 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
공식 URL https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
설명 Control playback rate of Udacity videos.
파일 크기 28.21 KB
설치 횟수 146
현재 버전 0.8
최근 업데이트 2014-01-23
출시 날짜 2014-01-23
평점 3.13/5 총 15 개의 평점
개발자 herman
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/has207/udacity-playback-chrome-extension
도움말 페이지 URL https://github.com/has207/udacity-playback-chrome-extension/issues
지원되는 언어 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"
            ]
        }
    ]
}