ServiceNow Dark Mode - NightWolf

Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.

ServiceNow Dark Mode - NightWolf là gì?

ServiceNow Dark Mode - NightWolf là một tiện ích mở rộng Chrome được phát triển bởi https://servicenow-ui.github.io, và tính năng chính của nó là "Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ServiceNow Dark Mode - NightWolf

Tải xuống các tệp mở rộng ServiceNow Dark Mode - NightWolf dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Service Now Dark Mode - Night Wolf Extension ensures to take care of your eyes using dark theme for ServiceNow tools and services.

Dark Mode is an extension for your browser to enable the dark theme for ServiceNow on the go!. Say goodbye to dryness, itchiness, and tired eyes.

DARK THEME FOR SERVICENOW 
The extension will make the colors of the ServiceNow UI to the darker shades, as well as alter the text color to make it easy to read on a dark background.

Dark mode is a user interface for content that displays light text on a dark background. Dark mode is especially helpful for those viewing computing device screens at night. The reduced brightness can reduce eye strain in low light conditions. 

Dark mode can also be used as a courtesy in situations when a screen's bright light might annoy others.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ServiceNow Dark Mode - NightWolf ServiceNow Dark Mode - NightWolf
ID iojloacieobnkcakfllkcbcmgcoobkgh
URL Chính Thức https://chromewebstore.google.com/detail/servicenow-dark-mode-nigh/iojloacieobnkcakfllkcbcmgcoobkgh
Mô tả Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.
Kích Thước Tệp 40.77 KB
Số Lần Cài Đặt 674
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2022-06-07
Đánh Giá 3.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://servicenow-ui.github.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://servicenow-ui.github.io/
URL Trang Chính Sách Bảo Mật https://github.com/virtualvivek/server/blob/main/chrome_extensions/privacypolicy.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ServiceNow Dark Mode - NightWolf",
    "short_name": "SNOW Dark Mode",
    "version": "2.2",
    "description": "Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.",
    "manifest_version": 3,
    "author": "Vivek Verma",
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.service-now.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nightwolf_navigator.css",
                "nightwolf_main.css",
                "nightwolf_stream_reader.css"
            ],
            "matches": [
                "*:\/\/*.service-now.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/assets\/icon16.png",
            "48": ".\/assets\/icon48.png",
            "128": ".\/assets\/icon128.png"
        }
    }
}