Google Chat Themes

Change google chat theme to dark mode, slack mode or make your own

Google Chat Themes là gì?

Google Chat Themes là một tiện ích mở rộng Chrome được phát triển bởi upman16, và tính năng chính của nó là "Change google chat theme to dark mode, slack mode or make your own".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Chat Themes

Tải xuống các tệp mở rộng Google Chat Themes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Chat Themes Google Chat Themes
ID olnlihilabjhneiedkofjdenhboogmeg
URL Chính Thức https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg
Mô tả Change google chat theme to dark mode, slack mode or make your own
Kích Thước Tệp 280 KB
Số Lần Cài Đặt 9,822
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2021-05-31
Ngày Phát Hành 2020-08-02
Đánh Giá 2.62/5 Tổng số 63 Đánh Giá
Nhà Phát Triển upman16
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/upman/gchat-themes
URL Trang Trợ Giúp https://github.com/upman/gchat-themes/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}