Tisy Dark Mode

Apply dark mode for any website

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

Tisy Dark Mode - это расширение Chrome, разработанное Lê Hữu Phúc, и его основная функция - "Apply dark mode for any website".

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

screenshot
screenshot
screenshot

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

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

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

                        • Apply dark mode for any website (except pages protected by the browser of course).
• Super simple and easy to use with one click.
• Instantly apply for all other tabs having the same domain.
• Day and Night styles (Day style has more contrast).
• An option page that allows manually input and backup whitelisted domains.                    

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

Название Tisy Dark Mode Tisy Dark Mode
ID cnnipakfnojcohgpgikgnndiiajiooja
Официальный URL https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja
Описание Apply dark mode for any website
Размер файла 478 KB
Количество установок 49
Текущая Версия 1.2
Последнее Обновление 2022-10-18
Дата публикации 2022-09-15
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Lê Hữu Phúc
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tisy Dark Mode",
    "description": "Apply dark mode for any website",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/icons\/bulb-128.png"
    },
    "action": {
        "default_title": "Turn dark mode on\/off",
        "default_icon": {
            "128": "assets\/icons\/bulb-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "assets\/pages\/options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": false,
            "css": [
                "assets\/styles\/tisy-dark-mode.css"
            ],
            "js": [
                "assets\/scripts\/tisy-dark-mode.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "activeTab"
    ]
}