Udemy Plus
Udemy Plus adds new features on top of your favorite Udemy.
Cos'è Udemy Plus?
Udemy Plus è un'estensione di Chrome sviluppata da TulparDev, e la sua funzione principale è "Udemy Plus adds new features on top of your favorite Udemy.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Udemy Plus
Scarica i file di estensione Udemy Plus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Features: - More video rates - Mark course section completed/incompleted - Picture in Picture 🔥🔥🔥 - Ctrl + Right/Left arrows - to open next/previous video See upcoming features: https://github.com/sagynbek/udemy-plus
Informazioni di Base sull'Estensione
Nome | Udemy Plus |
ID | llkblgkohonjafpigfbbamilgadmcilg |
URL Ufficiale | https://chromewebstore.google.com/detail/udemy-plus/llkblgkohonjafpigfbbamilgadmcilg |
Descrizione | Udemy Plus adds new features on top of your favorite Udemy. |
Dimensione del File | 22.14 KB |
Conteggio Installazioni | 2,542 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2022-07-31 |
Data di Pubblicazione | 2020-08-08 |
Valutazione | 4.31/5 Totale 16 Valutazioni |
Sviluppatore | TulparDev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | de,en,fr,tr,es,pt-PT,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extension_name__", "version": "1.1.1", "author": "Sagynbek Kenzhebaev", "description": "__MSG_extension_description__", "default_locale": "en", "action": { "default_title": "Udemy Plus", "default_popup": "ui\/popup\/index.html" }, "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.udemy.com\/*" ], "js": [ "inject\/index.js" ], "css": [ "ui\/page.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ui\/themes\/dark.css", "ui\/themes\/default.css", "icons\/pip-icon.png" ], "matches": [ "https:\/\/*.udemy.com\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.udemy.com\/*" ] } |