Udemy Time Remaining
Chrome extension that modifies the Udemy course page, displaying the time remaining after each section
Τι είναι το Udemy Time Remaining;
Το Udemy Time Remaining είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DInteractive, και η κύρια λειτουργία του είναι "Chrome extension that modifies the Udemy course page, displaying the time remaining after each section".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Udemy Time Remaining
Λήψη αρχείων επέκτασης 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 |
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\/*" ] } ] } |