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