Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
Google Chat Themesとは何ですか?
Google Chat Themesはupman16によって開発されたChromeの拡張機能で、その主な機能は「Change google chat theme to dark mode, slack mode or make your own」です。
拡張機能のスクリーンショット
Google Chat Themes拡張機能のCRXファイルをダウンロード
Google Chat Themes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Add dark mode, slack mode and customize fonts on google chat. Also completely customize and create your own theme instantly. Help keep the extension up and maintained. Buy me a coffee: https://www.paypal.com/donate?hosted_button_id=BL4NDDVH8AGUY
拡張機能の基本情報
名前 | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
公式URL | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
説明 | Change google chat theme to dark mode, slack mode or make your own |
ファイルサイズ | 280 KB |
インストール数 | 9,822 |
現在のバージョン | 0.0.2 |
最終更新日 | 2021-05-31 |
公開日 | 2020-08-02 |
評価 | 2.62/5 合計 63 レビュー |
開発者 | upman16 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/upman/gchat-themes |
ヘルプページのURL | https://github.com/upman/gchat-themes/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Chat Themes", "description": "Change google chat theme to dark mode, slack mode or make your own", "version": "0.0.2", "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ ".\/src\/content.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "16": "images\/heart.png", "24": "images\/heart.png", "32": "images\/heart.png" }, "default_title": "Google Chat Theme Customizer", "default_popup": "src\/popup\/popup.html" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage" ] } |