Tisy Dark Mode
Apply dark mode for any website
Tisy Dark Modeとは何ですか?
Tisy Dark ModeはLê Hữu Phúcによって開発されたChromeの拡張機能で、その主な機能は「Apply dark mode for any website」です。
拡張機能のスクリーンショット
Tisy Dark Mode拡張機能のCRXファイルをダウンロード
Tisy Dark Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
• 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 |
Eメール | [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" ] } |