Google Drive Dark Mode

Dark mode for Google Drive!

什么是Google Drive Dark Mode?

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

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Google Drive Dark Mode扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Google Drive Dark Mode Google Drive Dark Mode
ID mhlhbpejnmlkaiaggagblklodbbldmmc
官方URL https://chromewebstore.google.com/detail/google-drive-dark-mode/mhlhbpejnmlkaiaggagblklodbbldmmc
简介 Dark mode for Google Drive!
文件大小 21.95 KB
安装次数 66,670
当前版本 1.0.4
更新时间 2024-01-21
上架时间 2022-11-27
评分 3.43/5 共103次评分
开发者 Ivan Hidalgo
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/*"
            ]
        }
    ]
}