Google Docs Dark Mode

Dark mode for Google Docs!

Cos'è Google Docs Dark Mode?

Google Docs Dark Mode è un'estensione di Chrome sviluppata da Ivan Hidalgo, e la sua funzione principale è "Dark mode for Google Docs!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Google Docs Dark Mode

Scarica i file di estensione Google Docs Dark Mode 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

                        Dark mode for those long nights working on Google Docs!

This extension changes the style of Google Docs to a dark theme that is easier on the eyes and looks cooler :)

The dark mode and page color can be toggled from the controls on the top right of the page.

1.5.1 Update:
- Controls are now draggable, no more getting in your way!
- Improved visibility for top bar icons and word count window.
- Striving to be a better person, each day.

If you found this extension useful you can also try my extension for dark mode on google drive: https://chrome.google.com/webstore/detail/google-drive-dark-mode/mhlhbpejnmlkaiaggagblklodbbldmmc

Thank you kindly for all your donations <3                    

Informazioni di Base sull'Estensione

Nome Google Docs Dark Mode Google Docs Dark Mode
ID lgjhepbpjcmfmjlpkkdjlbgomamkgonb
URL Ufficiale https://chromewebstore.google.com/detail/google-docs-dark-mode/lgjhepbpjcmfmjlpkkdjlbgomamkgonb
Descrizione Dark mode for Google Docs!
Dimensione del File 138 KB
Conteggio Installazioni 654,474
Versione Corrente 1.5.1
Ultimo Aggiornamento 2023-08-28
Data di Pubblicazione 2019-12-08
Valutazione 3.39/5 Totale 1008 Valutazioni
Sviluppatore Ivan Hidalgo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Docs Dark Mode",
    "version": "1.5.1",
    "description": "Dark mode for Google Docs!",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Activate"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.css",
                "permanent.css",
                "pageStyle.css",
                "images\/extensionIconLocation.png",
                "images\/icon_128.png",
                "images\/moon.png",
                "images\/sun.png",
                "images\/paypal.png",
                "images\/docWhite.png",
                "images\/docBlack.png",
                "images\/black.png",
                "images\/help.png",
                "images\/close.png",
                "images\/settings.png"
            ],
            "matches": [
                "https:\/\/docs.google.com\/*"
            ]
        }
    ]
}