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ファイルをダウンロード

Udacity Playback Rate拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            ]
        }
    ]
}