Udacity Playback Rate

Control playback rate of Udacity videos.

Udacity Playback Rateคืออะไร?

Udacity Playback Rate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย herman และคุณลักษณะหลักของมันคือ "Control playback rate of Udacity videos."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udacity Playback Rate

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}