Udemy Permanent Progress Bar

Chrome extension that displays a permanent progress bar underneath the video player

Udemy Permanent Progress Barคืออะไร?

Udemy Permanent Progress Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DInteractive และคุณลักษณะหลักของมันคือ "Chrome extension that displays a permanent progress bar underneath the video player"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udemy Permanent Progress Bar

ดาวน์โหลดไฟล์ส่วนขยาย Udemy Permanent Progress Bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a tiny unobtrusive permanent progress bar underneath the Udemy course video player. 

If you want to be aware of the remaining time of the current lesson without needing to interact with the video or covering the video contents, this extension adds a tiny progress bar outside of the video area which does not partially hide course contents and is displayed permanently without you needing to constantly hover over the video.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Udemy Permanent Progress Bar Udemy Permanent Progress Bar
ID gjjeocdbniffbljmfagppoeclllgmoee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/udemy-permanent-progress/gjjeocdbniffbljmfagppoeclllgmoee
คำอธิบาย Chrome extension that displays a permanent progress bar underneath the video player
ขนาดไฟล์ 15.45 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-02-22
วันที่เผยแพร่ 2023-02-22
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา DInteractive
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Permanent Progress Bar",
    "version": "1.0.1",
    "description": "Chrome extension that displays a permanent progress bar underneath the video player",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_icon": "udemy-permanent-progress-bar-icon-16x16.png"
    },
    "icons": {
        "16": "udemy-permanent-progress-bar-icon-16x16.png",
        "48": "udemy-permanent-progress-bar-icon-48x48.png",
        "128": "udemy-permanent-progress-bar-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/*"
            ]
        }
    ]
}