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
公式URL 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
Eメール [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\/*"
            ]
        }
    ]
}