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
Eメール [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\/*"
            ]
        }
    ]
}