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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |