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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tad Wohlrapp, και η κύρια λειτουργία του είναι "Adds current ratings and other detailed information to all courses in your Udemy library.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Udemy - Improved Course Library

Λήψη αρχείων επέκτασης Udemy - Improved Course Library σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
        }
    ]
}