Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
Cos'è Google Docs Dark Mode (Darker)?
Google Docs Dark Mode (Darker) è un'estensione di Chrome sviluppata da PrefersDarkMode, e la sua funzione principale è "Google docs for someone who can't stand the light.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Docs Dark Mode (Darker)
Scarica i file di estensione Google Docs Dark Mode (Darker) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Docs Dark Mode (Darker) |
ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
URL Ufficiale | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
Descrizione | Google docs for someone who can't stand the light. |
Dimensione del File | 39.38 KB |
Conteggio Installazioni | 361 |
Versione Corrente | 1 |
Ultimo Aggiornamento | 2022-09-07 |
Data di Pubblicazione | 2022-09-04 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | PrefersDarkMode |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |