GroupMe Dark Mode

This extension adds a dark mode to the GroupMe web app

Apa itu GroupMe Dark Mode?

GroupMe Dark Mode adalah ekstensi Chrome yang dikembangkan oleh 2catteam, dan fitur utamanya adalah "This extension adds a dark mode to the GroupMe web app".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GroupMe Dark Mode

Unduh file ekstensi GroupMe Dark Mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GroupMe Dark Mode GroupMe Dark Mode
ID gcjcbmopidlbcnnekgjaifhmlmkjikgd
URL Resmi https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd
Deskripsi This extension adds a dark mode to the GroupMe web app
Ukuran File 483 KB
Jumlah Instalasi 118
Versi Saat Ini 3.0
Terakhir Diperbarui 2023-03-21
Tanggal Publikasi 2022-02-14
Pengembang 2catteam
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/2CATteam/GroupMeDarkMode
URL Halaman Bantuan https://github.com/2CATteam/GroupMeDarkMode/issues
Bahasa yang Didukung 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"
    }
}