GroupMe Dark Mode
This extension adds a dark mode to the GroupMe web app
Wat is GroupMe Dark Mode?
GroupMe Dark Mode is een Chrome-extensie ontwikkeld door 2catteam, en de belangrijkste functie is "This extension adds a dark mode to the GroupMe web app".
Extensie Screenshots
Download het CRX-bestand van de extensie GroupMe Dark Mode
Download GroupMe Dark Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | GroupMe Dark Mode |
ID | gcjcbmopidlbcnnekgjaifhmlmkjikgd |
Officiële URL | https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd |
Beschrijving | This extension adds a dark mode to the GroupMe web app |
Bestandsgrootte | 483 KB |
Aantal Installaties | 118 |
Huidige Versie | 3.0 |
Laatst Bijgewerkt | 2023-03-21 |
Publicatiedatum | 2022-02-14 |
Ontwikkelaar | 2catteam |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/2CATteam/GroupMeDarkMode |
Help Pagina-URL | https://github.com/2CATteam/GroupMeDarkMode/issues |
Ondersteunde Talen | 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" } } |