GroupMe Dark Mode

This extension adds a dark mode to the GroupMe web app

What is GroupMe Dark Mode?

GroupMe Dark Mode is a Chrome extension developed by 2catteam, and its main feature is "This extension adds a dark mode to the GroupMe web app".

Extension Screenshots

screenshot

Download GroupMe Dark Mode Extension CRX File

Download GroupMe Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GroupMe Dark Mode GroupMe Dark Mode
ID gcjcbmopidlbcnnekgjaifhmlmkjikgd
Official URL https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd
Description This extension adds a dark mode to the GroupMe web app
File Size 483 KB
Installation Count 118
Current Version 3.0
Last Updated 2023-03-21
Publish Date 2022-02-14
Developer 2catteam
Email [email protected]
Payment Type free
Extension Website https://github.com/2CATteam/GroupMeDarkMode
Help Page URL https://github.com/2CATteam/GroupMeDarkMode/issues
Supported Languages 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"
    }
}