Google Chat Themes

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

Google Chat Themes क्या है?

Google Chat Themes upman16 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change google chat theme to dark mode, slack mode or make your own"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Chat Themes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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
ईमेल [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"
    ]
}