StupID Dark Mode
Dark mode to StupID by injecting a stylesheet
Was ist StupID Dark Mode?
StupID Dark Mode ist eine Chrome-Erweiterung, die von StupidLogoChromeExtension entwickelt wurde, und ihr Hauptmerkmal ist "Dark mode to StupID by injecting a stylesheet".
Erweiterungsscreenshots
StupID Dark Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie StupID 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
Chrome Browser Extension to add dark mode to StupID by injecting a stylesheet. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fagenjpogifjohbjmdlomhkpbipkmeel |
| Offizielle URL | https://chromewebstore.google.com/detail/stupid-dark-mode/fagenjpogifjohbjmdlomhkpbipkmeel |
| Beschreibung | Dark mode to StupID by injecting a stylesheet |
| Dateigröße | 265 KB |
| Installationsanzahl | 41 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2020-12-17 |
| Veröffentlichungsdatum | 2020-07-28 |
| Entwickler | StupidLogoChromeExtension |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/JoHoop/studip-logo-mod |
| Hilfeseite URL | https://github.com/JoHoop/studip-logo-mod |
| Unterstützte Sprachen | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "StupID Dark Mode",
"version": "2.0",
"description": "Dark mode to StupID by injecting a stylesheet",
"author": "JoHoop",
"icons": {
"128": "assets\/icon.png"
},
"homepage_url": "https:\/\/github.com\/JoHoop\/studip-dark-mode",
"web_accessible_resources": [
"assets\/*"
],
"browser_action": {
"default_icon": "assets\/icon.png",
"default_title": "StupID Dark Mode"
},
"content_scripts": [
{
"matches": [
"https:\/\/elearning.uni-bremen.de\/*"
],
"run_at": "document_end",
"js": [
"logo.js"
],
"css": [
"styles.css"
],
"all_frames": true
}
]
} | |