Google Docs Dark Mode

Dark mode for Google Docs!

什么是Google Docs Dark Mode?

Google Docs Dark Mode是由Ivan Hidalgo开发的Chrome扩展程序,该扩展的主要功能是“Dark mode for Google Docs!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Google Docs Dark Mode扩展crx文件

下载Google Docs Dark Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Google Docs Dark Mode Google Docs Dark Mode
ID lgjhepbpjcmfmjlpkkdjlbgomamkgonb
官方URL https://chromewebstore.google.com/detail/google-docs-dark-mode/lgjhepbpjcmfmjlpkkdjlbgomamkgonb
简介 Dark mode for Google Docs!
文件大小 138 KB
安装次数 654,474
当前版本 1.5.1
更新时间 2023-08-28
上架时间 2019-12-08
评分 3.39/5 共1008次评分
开发者 Ivan Hidalgo
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/*"
            ]
        }
    ]
}