Udacity Playback Rate

Control playback rate of Udacity videos.

Udacity Playback Rate là gì?

Udacity Playback Rate là một tiện ích mở rộng Chrome được phát triển bởi herman, và tính năng chính của nó là "Control playback rate of Udacity videos.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Udacity Playback Rate

Tải xuống các tệp mở rộng Udacity Playback Rate dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Udacity Playback Rate Udacity Playback Rate
ID dffchaolhllnibbbkfmiokmbhkcopmfc
URL Chính Thức https://chromewebstore.google.com/detail/udacity-playback-rate/dffchaolhllnibbbkfmiokmbhkcopmfc
Mô tả Control playback rate of Udacity videos.
Kích Thước Tệp 28.21 KB
Số Lần Cài Đặt 146
Phiên Bản Hiện Tại 0.8
Cập Nhật Lần Cuối 2014-01-23
Ngày Phát Hành 2014-01-23
Đánh Giá 3.13/5 Tổng số 15 Đánh Giá
Nhà Phát Triển herman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/has207/udacity-playback-chrome-extension
URL Trang Trợ Giúp https://github.com/has207/udacity-playback-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}