Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
What is Google Chat Themes?
Google Chat Themes is a Chrome extension developed by upman16, and its main feature is "Change google chat theme to dark mode, slack mode or make your own".
Extension Screenshots
Download Google Chat Themes Extension CRX File
Download Google Chat Themes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
Official URL | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
Description | Change google chat theme to dark mode, slack mode or make your own |
File Size | 280 KB |
Installation Count | 9,822 |
Current Version | 0.0.2 |
Last Updated | 2021-05-31 |
Publish Date | 2020-08-02 |
Rating | 2.62/5 Total 63 Ratings |
Developer | upman16 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/upman/gchat-themes |
Help Page URL | https://github.com/upman/gchat-themes/issues |
Supported Languages | 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" ] } |