Google Chat Themes

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

Co je Google Chat Themes?

Google Chat Themes je rozšíření Chrome vyvinuté upman16, a jeho hlavní funkcí je „Change google chat theme to dark mode, slack mode or make your own“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Google Chat Themes

Stáhněte si soubory rozšíření Google Chat Themes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Google Chat Themes Google Chat Themes
ID olnlihilabjhneiedkofjdenhboogmeg
Oficiální URL https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg
Popis Change google chat theme to dark mode, slack mode or make your own
Velikost souboru 280 KB
Počet instalací 9,822
Aktuální Verze 0.0.2
Poslední Aktualizace 2021-05-31
Datum Vydání 2020-08-02
Hodnocení 2.62/5 Celkem 63 Hodnocení
Vývojář upman16
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/upman/gchat-themes
URL Stránky Nápovědy https://github.com/upman/gchat-themes/issues
Podporované Jazyky 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"
    ]
}