GroupMe Dark Mode
This extension adds a dark mode to the GroupMe web app
Vad är GroupMe Dark Mode?
GroupMe Dark Mode är en Chrome-tillägg utvecklad av 2catteam, och dess huvudfunktion är "This extension adds a dark mode to the GroupMe web app".
Tilläggsskärmbilder
Ladda ner GroupMe Dark Mode-förlängningens CRX-fil
Ladda ner GroupMe Dark Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | gcjcbmopidlbcnnekgjaifhmlmkjikgd |
| Officiell webbadress | https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd |
| Beskrivning | This extension adds a dark mode to the GroupMe web app |
| Filstorlek | 483 KB |
| Antal Installationer | 118 |
| Aktuell Version | 3.0 |
| Senast Uppdaterad | 2023-03-21 |
| Publiceringsdatum | 2022-02-14 |
| Utvecklare | 2catteam |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/2CATteam/GroupMeDarkMode |
| Hjälpsida URL | https://github.com/2CATteam/GroupMeDarkMode/issues |
| Stödda Språk | 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"
}
} | |