Udemy Custom Speed Changer

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

Udemy Custom Speed Changerคืออะไร?

Udemy Custom Speed Changer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย August Kimacovich และคุณลักษณะหลักของมันคือ "Change Udemy's video player to allow any custom speed."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udemy Custom Speed Changer

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}