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
电子邮箱 [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"
    }
}