ServiceNow Glances
This extension shows a count of ServiceNow ticket queues.
Co to jest ServiceNow Glances?
ServiceNow Glances to rozszerzenie Chrome opracowane przez Michael Ishri, a jego główną funkcją jest „This extension shows a count of ServiceNow ticket queues.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ServiceNow Glances
Pobierz pliki rozszerzeń ServiceNow Glances w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
ServiceNow Glances lets you see your ServiceNow queues at a glance. You can quickly see how many tickets are listed under the filtered queue and you can even open tickets straight from this extension.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ncmaikkgclmelhgialgihpcmnonogljf |
Oficjalny URL | https://chrome.google.com/webstore/detail/servicenow-glances/ncmaikkgclmelhgialgihpcmnonogljf |
Opis | This extension shows a count of ServiceNow ticket queues. |
Rozmiar pliku | 91.59 KB |
Liczba instalacji | 84 |
Aktualna Wersja | 0.7 |
Ostatnia Aktualizacja | 2018-09-27 |
Data Publikacji | 2018-09-27 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Michael Ishri |
Typ Płatności | free |
Strona Rozszerzenia | https://medium.com/@michael.ishri/servicenow-glances-chrome-extension-2e9bc69ce957 |
Adres URL Strony Pomocy | https://medium.com/@michael.ishri/servicenow-glances-chrome-extension-2e9bc69ce957 |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ServiceNow Glances", "description": "This extension shows a count of ServiceNow ticket queues.", "version": "0.7", "background": { "scripts": [ "\/js\/jquery-3.3.1.min.js", "\/js\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "\/html\/popup.html", "default_title": "ServiceNow Glances" }, "permissions": [ "tabs", "storage", "unlimitedStorage", "https:\/\/fonts.googleapis.com\/", "https:\/\/*.service-now.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "html\/settings.html" } |