Tisy Dark Mode
Apply dark mode for any website
Qu'est-ce que Tisy Dark Mode ?
Tisy Dark Mode est une extension Chrome développée par Lê Hữu Phúc, et sa fonction principale est "Apply dark mode for any website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tisy Dark Mode
Téléchargez les fichiers d'extension Tisy Dark Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
• 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.
Informations de Base sur l'Extension
Nom | Tisy Dark Mode |
ID | cnnipakfnojcohgpgikgnndiiajiooja |
URL Officiel | https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja |
Description | Apply dark mode for any website |
Taille du Fichier | 478 KB |
Nombre d'Installations | 49 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2022-10-18 |
Date de Publication | 2022-09-15 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Lê Hữu Phúc |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |