Udacity Playback Rate

Control playback rate of Udacity videos.

Udacity Playback Rate क्या है?

Udacity Playback Rate herman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control playback rate of Udacity videos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Udacity Playback Rate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}