Google Chat Themes

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

ما هو Google Chat Themes؟

Google Chat Themes هو إضافة Chrome تم تطويرها بواسطة upman16، والميزة الرئيسية لها هي "Change google chat theme to dark mode, slack mode or make your own".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Google Chat Themes

قم بتنزيل ملفات الامتداد Google Chat Themes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}