Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
What is Google Docs Dark Mode (Darker)?
Google Docs Dark Mode (Darker) is a Chrome extension developed by PrefersDarkMode, and its main feature is "Google docs for someone who can't stand the light.".
Extension Screenshots
Download Google Docs Dark Mode (Darker) Extension CRX File
Download Google Docs Dark Mode (Darker) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google Docs Dark Mode (Darker) |
ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
Official URL | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
Description | Google docs for someone who can't stand the light. |
File Size | 39.38 KB |
Installation Count | 361 |
Current Version | 1 |
Last Updated | 2022-09-07 |
Publish Date | 2022-09-04 |
Rating | 3.00/5 Total 2 Ratings |
Developer | PrefersDarkMode |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |