Udemy Dark Theme
A dark theme for the udemy website
ما هو Udemy Dark Theme؟
Udemy Dark Theme هو إضافة Chrome تم تطويرها بواسطة udemy-dark-theme-devs، والميزة الرئيسية لها هي "A dark theme for the udemy website".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Udemy Dark Theme
قم بتنزيل ملفات الامتداد Udemy Dark Theme بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 } |