Udemy Custom Speed Changer

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

Udemy Custom Speed Changerとは何ですか?

Udemy Custom Speed ChangerはAugust Kimacovichによって開発されたChromeの拡張機能で、その主な機能は「Change Udemy's video player to allow any custom speed.」です。

拡張機能のスクリーンショット

screenshot

Udemy Custom Speed Changer拡張機能のCRXファイルをダウンロード

Udemy Custom Speed Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}