WhatsApp Dark Theme
Change your WhatsApp web app to dark theme.
WhatsApp Dark Themeとは何ですか?
WhatsApp Dark ThemeはHomecodeによって開発されたChromeの拡張機能で、その主な機能は「Change your WhatsApp web app to dark theme.」です。
拡張機能のスクリーンショット
WhatsApp Dark Theme拡張機能のCRXファイルをダウンロード
WhatsApp Dark Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a simple Google Chrome Extension to change the WhatsApp web app to the dark theme If you don't know, WhatsApp has already a css class to change the theme to dark but, it's disabled by default. This code just add the class "dark" to body tag of DOM on WhatsApp web page. You can check out the extension here: https://bit.ly/WhatsAppDarkThemeCode
拡張機能の基本情報
名前 | ![]() |
ID | kccelbjhigfmkeipogopnnfjjomlcdcg |
公式URL | https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg |
説明 | Change your WhatsApp web app to dark theme. |
ファイルサイズ | 13.59 KB |
インストール数 | 14 |
現在のバージョン | 1.0.1 |
最終更新日 | 2020-06-23 |
公開日 | 2020-06-23 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Homecode |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://homecode.com.br |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Dark Theme", "version": "1.0.1", "description": "Change your WhatsApp web app to dark theme.", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "128": "icons\/icon-128.png", "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png" }, "browser_action": { "default_icon": { "128": "icons\/icon-128.png", "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png" } }, "manifest_version": 2 } |