Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
Wat is Google Docs Dark Mode (Darker)?
Google Docs Dark Mode (Darker) is een Chrome-extensie ontwikkeld door PrefersDarkMode, en de belangrijkste functie is "Google docs for someone who can't stand the light.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Docs Dark Mode (Darker)
Download Google Docs Dark Mode (Darker)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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                     Basisinformatie over de Extensie
| Naam |   |  
| ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh | 
| Officiële URL | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh | 
| Beschrijving | Google docs for someone who can't stand the light. | 
| Bestandsgrootte | 39.38 KB | 
| Aantal Installaties | 361 | 
| Huidige Versie | 1 | 
| Laatst Bijgewerkt | 2022-09-07 | 
| Publicatiedatum | 2022-09-04 | 
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen | 
| Ontwikkelaar | PrefersDarkMode | 
| [email protected] | |
| Betalingswijze | free | 
| Ondersteunde Talen | 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\/*"
            ]
        }
    ]
}  |  |