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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}