Udemy Dark Theme
A dark theme for the udemy website
Cos'è Udemy Dark Theme?
Udemy Dark Theme è un'estensione di Chrome sviluppata da udemy-dark-theme-devs, e la sua funzione principale è "A dark theme for the udemy website".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Udemy Dark Theme
Scarica i file di estensione Udemy Dark Theme 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
Adds dark theme for the udemy.com website Features: - adds a dark theme for all views inside the udemy.com domain - allows you to configure custom colours to create your own theme -------------------- Github: https://github.com/Pachciar3/udemy-dark-mode-extension Authors: Dawid - https://github.com/Pachciar3/ Menno - https://mennoveerkamp.com/
Informazioni di Base sull'Estensione
Nome | Udemy Dark Theme |
ID | mnloceeicbhfhinjcnfieonmpindkmpb |
URL Ufficiale | https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb |
Descrizione | A dark theme for the udemy website |
Dimensione del File | 51.25 KB |
Conteggio Installazioni | 14,161 |
Versione Corrente | 2.1.5 |
Ultimo Aggiornamento | 2023-11-02 |
Data di Pubblicazione | 2020-05-03 |
Valutazione | 4.31/5 Totale 74 Valutazioni |
Sviluppatore | udemy-dark-theme-devs |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Udemy Dark Theme", "version": "2.1.5", "description": "A dark theme for the udemy website", "permissions": [ "activeTab", "declarativeContent", "storage", "scripting" ], "options_page": "options.html", "background": { "service_worker": "serviceWorker.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/udemy_dark_mode16.png", "32": "icons\/udemy_dark_mode32.png", "48": "icons\/udemy_dark_mode48.png", "128": "icons\/udemy_dark_mode128.png" } }, "icons": { "16": "icons\/udemy_dark_mode16.png", "32": "icons\/udemy_dark_mode32.png", "48": "icons\/udemy_dark_mode48.png", "128": "icons\/udemy_dark_mode128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.udemy.com\/*" ], "css": [ "styles\/background.css" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "manifest_version": 3 } |