GroupMe Dark Mode
This extension adds a dark mode to the GroupMe web app
Was ist GroupMe Dark Mode?
GroupMe Dark Mode ist eine Chrome-Erweiterung, die von 2catteam entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds a dark mode to the GroupMe web app".
Erweiterungsscreenshots
GroupMe Dark Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie GroupMe Dark Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gcjcbmopidlbcnnekgjaifhmlmkjikgd |
| Offizielle URL | https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd |
| Beschreibung | This extension adds a dark mode to the GroupMe web app |
| Dateigröße | 483 KB |
| Installationsanzahl | 118 |
| Aktuelle Version | 3.0 |
| Letztes Update | 2023-03-21 |
| Veröffentlichungsdatum | 2022-02-14 |
| Entwickler | 2catteam |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/2CATteam/GroupMeDarkMode |
| Hilfeseite URL | https://github.com/2CATteam/GroupMeDarkMode/issues |
| Unterstützte Sprachen | 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"
}
} | |