Dark Mode for ServiceNow

Take care of your eyes day and night using dark theme for ServiceNow tools and services.

Что такое Dark Mode for ServiceNow?

Dark Mode for ServiceNow - это расширение Chrome, разработанное Growthdot, и его основная функция - "Take care of your eyes day and night using dark theme for ServiceNow tools and services.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Dark Mode is an extension for your browser to enable the dark theme for ServiceNow in one click. Say goodbye to dryness, itchiness, and tired eyes.

DARK THEME FOR SERVICENOW 
The extension will invert the color of the ServiceNow UI to black, as well as alter the text color to make it easy to read on a dark background. Therefore, you won’t have to strain your eyes when working in a room with poor lighting. 

We also added advanced settings so you could adjust contrast and brightness levels.

NIGHT SHIFT MODE
Prolonged exposure to blue light is extremely harmful to the eyes as well as your sleep. However, you can reduce its effect with the Night Shift feature. The extension will change the light from cold to warm, making it softer and a bit dimmer.

Night Shift is optional. You can switch it on and off when necessary.                    

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

Название Dark Mode for ServiceNow Dark Mode for ServiceNow
ID hhnpbloiiippffkegkionbdhhbeeekad
Официальный URL https://chromewebstore.google.com/detail/dark-mode-for-servicenow/hhnpbloiiippffkegkionbdhhbeeekad
Описание Take care of your eyes day and night using dark theme for ServiceNow tools and services.
Размер файла 695 KB
Количество установок 944
Текущая Версия 3.0.31
Последнее Обновление 2024-03-01
Дата публикации 2020-09-22
Рейтинг 2.67/5 Всего 12 оценок
Разработчик Growthdot
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://growthdot.com/dark-mode/
URL страницы помощи https://growthdot.com/contact-us/
URL страницы политики конфиденциальности https://growthdot.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description_short__",
    "version": "3.0.31",
    "author": "__MSG_extension_author_name__",
    "homepage_url": "https:\/\/growthdot.com",
    "icons": {
        "48": "icons\/icon.png",
        "96": "icons\/[email protected]"
    },
    "action": {
        "default_title": "__MSG_extension_default_title__",
        "default_icon": {
            "19": "icons\/icon19.png",
            "20": "icons\/icon20.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon.png",
            "96": "icons\/[email protected]"
        },
        "default_popup": "code\/settings\/app.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/slack.com\/*",
                "https:\/\/*.microsoft.com\/*"
            ],
            "js": [
                "code\/client\/client.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "webNavigation"
    ],
    "background": {
        "service_worker": "code\/background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}