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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://servicenow-ui.github.io, και η κύρια λειτουργία του είναι "Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ServiceNow Dark Mode - NightWolf
Λήψη αρχείων επέκτασης ServiceNow Dark Mode - NightWolf σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } } |