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
官方網址 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\/*"
            ]
        }
    ]
}