ServiceNow Dark Mode - NightWolf
Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.
ServiceNow Dark Mode - NightWolf란 무엇입니까?
ServiceNow Dark Mode - NightWolf은(는) https://servicenow-ui.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services."입니다.
확장 프로그램 스크린샷
ServiceNow Dark Mode - NightWolf 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | ServiceNow Dark Mode - NightWolf |
ID | iojloacieobnkcakfllkcbcmgcoobkgh |
공식 URL | https://chromewebstore.google.com/detail/servicenow-dark-mode-nigh/iojloacieobnkcakfllkcbcmgcoobkgh |
설명 | Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services. |
파일 크기 | 40.77 KB |
설치 횟수 | 674 |
현재 버전 | 2.2 |
최근 업데이트 | 2024-02-04 |
출시 날짜 | 2022-06-07 |
평점 | 3.56/5 총 9 개의 평점 |
개발자 | https://servicenow-ui.github.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://servicenow-ui.github.io/ |
개인정보 보호 정책 페이지 URL | https://github.com/virtualvivek/server/blob/main/chrome_extensions/privacypolicy.md |
지원되는 언어 | 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" } } } |