Google Drive Dark Mode

Dark mode for Google Drive!

Что такое Google Drive Dark Mode?

Google Drive Dark Mode - это расширение Chrome, разработанное Ivan Hidalgo, и его основная функция - "Dark mode for Google Drive!".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Google Drive Dark Mode

Скачайте файлы расширений 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\/*"
            ]
        }
    ]
}