Udemy Custom Speed Changer

Change Udemy's video player to allow any custom speed.

Udemy Custom Speed Changer क्या है?

Udemy Custom Speed Changer August Kimacovich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change Udemy's video player to allow any custom speed."।

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

screenshot

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

crx प्रारूप में Udemy Custom Speed Changer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Set any custom speed in Udemy's video player to be as efficient as possible! Customize/add any speeds you please. The max speed Udemy's video player supports with this extension is x16!

❗IMPORTANT - FIRST USE SETUP❗
The extension won't work until the cache is refreshed! Either do a hard refresh from the video player page (CTRL + SHIFT + R), or go to your Chrome history (CTRL+H) > Clear browsing data > Clear "Cached images and files" (All Time). 

You can change the custom speeds by clicking the extension icon > "Options".

Enjoy! 📚👩‍💻📐

---

This only works for the desktop video player which shows the speed selector on the left side (seen in the extension page picture).

I may need to update the extension if there is ever a conflicting change in Udemy's code. If there is an issue please create an issue on GitHub or email before leaving a bad review, and I will fix it. I rely on you to let me know if there is ever a problem, thanks!

Report a issue:
www.github.com/augustmuir/Udemy-Custom-Speed-Changer
[email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Udemy Custom Speed Changer Udemy Custom Speed Changer
ID mfinfiagnpnbijihonbeadgnfbihhpcf
आधिकारिक URL https://chromewebstore.google.com/detail/udemy-custom-speed-change/mfinfiagnpnbijihonbeadgnfbihhpcf
विवरण Change Udemy's video player to allow any custom speed.
फ़ाइल का आकार 678 KB
स्थापना संख्या 1,922
वर्तमान संस्करण 2.1.4
अंतिम अपडेट 2023-09-18
प्रकाशन तिथि 2021-12-19
रेटिंग 4.85/5 कुल 27 रेटिंग्स
डेवलपर August Kimacovich
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/augustmuir/Udemy-Custom-Speed-Changer
सहायता पृष्ठ URL https://github.com/augustmuir/Udemy-Custom-Speed-Changer
गोपनीयता नीति पृष्ठ URL https://idality.dev/udemyspeedchangerprivacypolicy.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy Custom Speed Changer",
    "description": "Change Udemy's video player to allow any custom speed.",
    "version": "2.1.4",
    "options_page": "options.html",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*.udemy.com\/*",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "injector.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/*"
            ],
            "js": [
                "injector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "media\/icon16.png",
        "48": "media\/icon48.png",
        "128": "media\/icon128.png"
    }
}