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 |
官方網址 | 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" ] } |