Udemy Time Remaining

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

什麼是Udemy Time Remaining?

Udemy Time Remaining是由DInteractive開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that modifies the Udemy course page, displaying the time remaining after each section”。

擴展截圖

screenshot
screenshot
screenshot

下載Udemy Time Remaining擴展crx文件

下載Udemy Time Remaining擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Udemy Time Remaining Udemy Time Remaining
ID hjlgkejhagcnacgghedfbgehboigjmpk
官方網址 https://chromewebstore.google.com/detail/udemy-time-remaining/hjlgkejhagcnacgghedfbgehboigjmpk
簡介 Chrome extension that modifies the Udemy course page, displaying the time remaining after each section
檔案大小 15.57 KB
安裝次數 503
目前版本 1.0.2
更新時間 2024-02-01
上架時間 2023-02-22
評分 4.63/5 共 8 次評分
開發者 DInteractive
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
            ]
        }
    ]
}