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 с друзьями, чтобы легко установить расширения 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 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"
    ]
}