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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
            ]
        }
    ]
}