Udemy - Improved Course Library

Adds current ratings and other detailed information to all courses in your Udemy library.

Udemy - Improved Course Library란 무엇입니까?

Udemy - Improved Course Library은(는) Tad Wohlrapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds current ratings and other detailed information to all courses in your Udemy library."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Udemy - Improved Course Library 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds additional course information to the courses in your Udemy library.
It uses the Udemy API to retrieve additional information about the courses in your library and adds the following elements to each course:

•  The total runtime
•  The rating
•  The total number of ratings
•  The number of enrolled students
•  The date of the last update
•  Info about available subtitles

Additionally it displays a thin colored strip at the bottom of the course card, from red (3.5 stars and below) to green (5 stars).

This should give you a good idea of which course is worthwhile and which you might want to archive instead.

Note: If a course has stopped enrollment and is no longer publicly visible, no stats are available for that course.

If you like the extension, I'd appreciate a review!
★★★★★

Thanks,
Tad

====================================

This extension is open-source:
https://github.com/tadwohlrapp/udemy-improved-course-library

Udemy is a trademark of Udemy, Inc. This browser extension is not a product of Udemy, Inc. and is not affiliated with Udemy, Inc. in any way.                    

확장 프로그램 기본 정보

이름 Udemy - Improved Course Library Udemy - Improved Course Library
ID dmlfcanjgejpgjajoiepgfglmjcnhhlh
공식 URL https://chromewebstore.google.com/detail/udemy-improved-course-lib/dmlfcanjgejpgjajoiepgfglmjcnhhlh
설명 Adds current ratings and other detailed information to all courses in your Udemy library.
파일 크기 15.18 KB
설치 횟수 1,300
현재 버전 1.1.2
최근 업데이트 2023-08-25
출시 날짜 2021-01-26
평점 4.92/5 총 13 개의 평점
개발자 Tad Wohlrapp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tadwohlrapp/udemy-improved-course-library
도움말 페이지 URL https://github.com/tadwohlrapp/udemy-improved-course-library/issues
지원되는 언어 de,en,fr,es,it,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.1.2",
    "author": "Tad Wohlrapp",
    "homepage_url": "https:\/\/github.com\/tadwohlrapp\/udemy-improved-course-library",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/home\/my-courses\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}