GroupMe Dark Mode

This extension adds a dark mode to the GroupMe web app

Cos'è GroupMe Dark Mode?

GroupMe Dark Mode è un'estensione di Chrome sviluppata da 2catteam, e la sua funzione principale è "This extension adds a dark mode to the GroupMe web app".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GroupMe Dark Mode

Scarica i file di estensione GroupMe Dark Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds a dark mode to the GroupMe web app. It's not the best theme in the world, and the extension isn't the most performant, but I like to think it's good enough                    

Informazioni di Base sull'Estensione

Nome GroupMe Dark Mode GroupMe Dark Mode
ID gcjcbmopidlbcnnekgjaifhmlmkjikgd
URL Ufficiale https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd
Descrizione This extension adds a dark mode to the GroupMe web app
Dimensione del File 483 KB
Conteggio Installazioni 118
Versione Corrente 3.0
Ultimo Aggiornamento 2023-03-21
Data di Pubblicazione 2022-02-14
Sviluppatore 2catteam
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/2CATteam/GroupMeDarkMode
URL della Pagina di Aiuto https://github.com/2CATteam/GroupMeDarkMode/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GroupMe Dark Mode",
    "description": "This extension adds a dark mode to the GroupMe web app",
    "version": "3.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.groupme.com\/*",
                "*:\/\/beta.groupme.com\/*",
                "*:\/\/app.groupme.com\/*"
            ],
            "js": [
                "GroupMeDarkMode.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/web.groupme.com\/*",
        "*:\/\/beta.groupme.com\/*",
        "*:\/\/app.groupme.com\/*"
    ],
    "icons": {
        "128": "icons\/Icon-128.png",
        "96": "icons\/Icon-96.png",
        "64": "icons\/Icon-64.png",
        "48": "icons\/Icon-48.png",
        "32": "icons\/Icon-32.png",
        "16": "icons\/Icon-16.png"
    }
}