Google Drive Dark Mode

Dark mode for Google Drive!

What is Google Drive Dark Mode?

Google Drive Dark Mode is a Chrome extension developed by Ivan Hidalgo, and its main feature is "Dark mode for Google Drive!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Google Drive Dark Mode Extension CRX File

Download Google Drive Dark Mode 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

                        Dark mode for Google Drive is here!

Simply install and the extension will automatically give google drive a slick dark theme.

You can toggle the dark mode on and off by clicking on the button next to the drive logo.

1.0.4 update:
- Fix extension not working on the newest Chrome version.
- Improved visibility for the storage warning.                    

Extension Basic Information

Name Google Drive Dark Mode Google Drive Dark Mode
ID mhlhbpejnmlkaiaggagblklodbbldmmc
Official URL https://chromewebstore.google.com/detail/google-drive-dark-mode/mhlhbpejnmlkaiaggagblklodbbldmmc
Description Dark mode for Google Drive!
File Size 21.95 KB
Installation Count 66,670
Current Version 1.0.4
Last Updated 2024-01-21
Publish Date 2022-11-27
Rating 3.43/5 Total 103 Ratings
Developer Ivan Hidalgo
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Drive Dark Mode",
    "version": "1.0.4",
    "description": "Dark mode for Google Drive!",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/drive.google.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/logo.png"
    },
    "action": {
        "default_icon": "images\/logo.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.css",
                "permanent.css",
                "images\/moon.png",
                "images\/sun.png",
                "images\/paypal.png",
                "images\/logo.png"
            ],
            "matches": [
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*"
            ]
        }
    ]
}