Udemy Time Remaining

Chrome extension that modifies the Udemy course page, displaying the time remaining after each section

Udemy Time Remaining là gì?

Udemy Time Remaining là một tiện ích mở rộng Chrome được phát triển bởi DInteractive, và tính năng chính của nó là "Chrome extension that modifies the Udemy course page, displaying the time remaining after each section".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Udemy Time Remaining

Tải xuống các tệp mở rộng Udemy Time Remaining dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This little extension will display on the righthand side of each course section, how much time is remaining to finalize the course (including the section where it's listed).

Please bear in mind that Udemy is fairly inconsistent at formatting the course duration times. This extension works by parsing each section duration, therefore that might cause issues for some courses or some particular languages. If you detect any of such issues please let us know so that we can address it.

If the extension doesn't work for you, it might be the case that your language is not supported. Please let us know so that we can include support for it. At the moment the extension should support all 16 languages that Udemy supports as of February 2023.

Note: This extension doesn't work at the moment with Udemy for business,  it only supports regular Udemy.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Udemy Time Remaining Udemy Time Remaining
ID hjlgkejhagcnacgghedfbgehboigjmpk
URL Chính Thức https://chromewebstore.google.com/detail/udemy-time-remaining/hjlgkejhagcnacgghedfbgehboigjmpk
Mô tả Chrome extension that modifies the Udemy course page, displaying the time remaining after each section
Kích Thước Tệp 15.57 KB
Số Lần Cài Đặt 503
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2024-02-01
Ngày Phát Hành 2023-02-22
Đánh Giá 4.63/5 Tổng số 8 Đánh Giá
Nhà Phát Triển DInteractive
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Time Remaining",
    "version": "1.0.2",
    "description": "Chrome extension that modifies the Udemy course page, displaying the time remaining after each section",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_title": "Udemy Time Remaining",
        "default_icon": "udemy-time-remaining-icon-16x16.png"
    },
    "icons": {
        "16": "udemy-time-remaining-icon-16x16.png",
        "48": "udemy-time-remaining-icon-48x48.png",
        "128": "udemy-time-remaining-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/*"
            ]
        }
    ]
}