Wikipedia Dark Mode

View the Wikipedia website with a dark color scheme instead of the default light scheme.

Что такое Wikipedia Dark Mode?

Wikipedia Dark Mode - это расширение Chrome, разработанное Dirk Lach, и его основная функция - "View the Wikipedia website with a dark color scheme instead of the default light scheme.".

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

screenshot

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

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

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

                        This extension is useful for users who prefer a darker aesthetic, or for those who find the dark mode easier on the eyes when reading for extended periods of time. The plugin can be easily installed from the Chrome Web Store and activated with the click of a button. Once enabled, the Wikipedia website will automatically switch to a dark color scheme, providing a more immersive and comfortable reading experience.                    

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

Название Wikipedia Dark Mode Wikipedia Dark Mode
ID jallfikmipepigfdkhpcpbpdeoindjme
Официальный URL https://chromewebstore.google.com/detail/wikipedia-dark-mode/jallfikmipepigfdkhpcpbpdeoindjme
Описание View the Wikipedia website with a dark color scheme instead of the default light scheme.
Размер файла 83.39 KB
Количество установок 327
Текущая Версия 0.1.2
Последнее Обновление 2022-12-08
Дата публикации 2022-12-06
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Dirk Lach
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.dirklach.com/privacy.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wikipedia Dark Mode",
    "version": "0.1.2",
    "description": "View the Wikipedia website with a dark color scheme instead of the default light scheme.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ]
        }
    ]
}