Tisy Dark Mode
Apply dark mode for any website
Wat is Tisy Dark Mode?
Tisy Dark Mode is een Chrome-extensie ontwikkeld door Lê Hữu Phúc, en de belangrijkste functie is "Apply dark mode for any website".
Extensie Screenshots
Download het CRX-bestand van de extensie Tisy Dark Mode
Download Tisy Dark Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
• 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.
Basisinformatie over de Extensie
Naam | Tisy Dark Mode |
ID | cnnipakfnojcohgpgikgnndiiajiooja |
Officiële URL | https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja |
Beschrijving | Apply dark mode for any website |
Bestandsgrootte | 478 KB |
Aantal Installaties | 49 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2022-10-18 |
Publicatiedatum | 2022-09-15 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Lê Hữu Phúc |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |