Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
Was ist Google Docs Dark Mode (Darker)?
Google Docs Dark Mode (Darker) ist eine Chrome-Erweiterung, die von PrefersDarkMode entwickelt wurde, und ihr Hauptmerkmal ist "Google docs for someone who can't stand the light.".
Erweiterungsscreenshots
Google Docs Dark Mode (Darker)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Docs Dark Mode (Darker)-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
Simply applies a overtly dark theme to google docs. Perfect for those who prefer a pitch black dark mode in google docs. Absolutely ZERO user data is collected.
Source code: https://github.com/R-Y-M-R/DocsDarkMode Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
| Offizielle URL | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
| Beschreibung | Google docs for someone who can't stand the light. |
| Dateigröße | 39.38 KB |
| Installationsanzahl | 361 |
| Aktuelle Version | 1 |
| Letztes Update | 2022-09-07 |
| Veröffentlichungsdatum | 2022-09-04 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | PrefersDarkMode |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Docs Dark Mode (Darker)",
"version": "1",
"description": "Google docs for someone who can't stand the light.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/document\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"128": "128.png"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"css\/dark_mode_docs.css"
],
"matches": [
"https:\/\/docs.google.com\/*"
]
}
]
} | |