Udemy Dark Theme
A dark theme for the udemy website
Udemy Dark Theme क्या है?
Udemy Dark Theme udemy-dark-theme-devs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A dark theme for the udemy website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Udemy Dark Theme एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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/
एक्सटेंशन की मूल जानकारी
नाम | Udemy Dark Theme |
ID | mnloceeicbhfhinjcnfieonmpindkmpb |
आधिकारिक URL | https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb |
विवरण | A dark theme for the udemy website |
फ़ाइल का आकार | 51.25 KB |
स्थापना संख्या | 14,161 |
वर्तमान संस्करण | 2.1.5 |
अंतिम अपडेट | 2023-11-02 |
प्रकाशन तिथि | 2020-05-03 |
रेटिंग | 4.31/5 कुल 74 रेटिंग्स |
डेवलपर | udemy-dark-theme-devs |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } |