Docs Dark 2.0

Dark Theme for Docs with high contrast!

Что такое Docs Dark 2.0?

Docs Dark 2.0 - это расширение Chrome, разработанное Ameya Lambat, и его основная функция - "Dark Theme for Docs with high contrast!".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Docs Dark 2.0

Скачайте файлы расширений Docs Dark 2.0 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Dark Theme 2.0 with improved UI and higher contrast for Docs.

Users can view their document with the background in high contrast dark mode that makes the experience easy on the eyes and keeps the document untouched!


V 0.0.13                    

Основная информация о расширении

Название Docs Dark 2.0 Docs Dark 2.0
ID djmmkojigpkdagglmjjdjiddopgdchcn
Официальный URL https://chromewebstore.google.com/detail/docs-dark-20/djmmkojigpkdagglmjjdjiddopgdchcn
Описание Dark Theme for Docs with high contrast!
Размер файла 24.93 KB
Количество установок 799
Текущая Версия 0.0.13
Последнее Обновление 2022-09-25
Дата публикации 2022-09-25
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Ameya Lambat
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Docs Dark 2.0",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ]
        }
    ],
    "description": "Dark Theme for Docs with high contrast!",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "version": "0.0.13",
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "resources": [
                "css\/dark_theme.css"
            ]
        }
    ],
    "manifest_version": 3
}