Tisy Dark Mode
Apply dark mode for any website
ما هو Tisy Dark Mode؟
Tisy Dark Mode هو إضافة Chrome تم تطويرها بواسطة Lê Hữu Phúc، والميزة الرئيسية لها هي "Apply dark mode for any website".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tisy Dark Mode
قم بتنزيل ملفات الامتداد Tisy Dark Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
• Apply dark mode for any website (except pages protected by the browser of course). • Super simple and easy to use with one click. • Instantly apply for all other tabs having the same domain. • Day and Night styles (Day style has more contrast). • An option page that allows manually input and backup whitelisted domains.
معلومات أساسية عن التمديد
الاسم | Tisy Dark Mode |
ID | cnnipakfnojcohgpgikgnndiiajiooja |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja |
الوصف | Apply dark mode for any website |
حجم الملف | 478 KB |
عدد التثبيتات | 49 |
النسخة الحالية | 1.2 |
آخر تحديث | 2022-10-18 |
تاريخ النشر | 2022-09-15 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Lê Hữu Phúc |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tisy Dark Mode", "description": "Apply dark mode for any website", "version": "1.2", "manifest_version": 3, "icons": { "128": "assets\/icons\/bulb-128.png" }, "action": { "default_title": "Turn dark mode on\/off", "default_icon": { "128": "assets\/icons\/bulb-128.png" } }, "background": { "service_worker": "background.js" }, "options_page": "assets\/pages\/options.html", "content_scripts": [ { "all_frames": true, "match_about_blank": false, "css": [ "assets\/styles\/tisy-dark-mode.css" ], "js": [ "assets\/scripts\/tisy-dark-mode.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "scripting", "storage", "tabs", "activeTab" ] } |