ServiceNow Glances

This extension shows a count of ServiceNow ticket queues.

Cos'è ServiceNow Glances?

ServiceNow Glances è un'estensione di Chrome sviluppata da Michael Ishri, e la sua funzione principale è "This extension shows a count of ServiceNow ticket queues.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ServiceNow Glances

Scarica i file di estensione ServiceNow Glances in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ServiceNow Glances ServiceNow Glances
ID ncmaikkgclmelhgialgihpcmnonogljf
URL Ufficiale https://chrome.google.com/webstore/detail/servicenow-glances/ncmaikkgclmelhgialgihpcmnonogljf
Descrizione This extension shows a count of ServiceNow ticket queues.
Dimensione del File 91.59 KB
Conteggio Installazioni 84
Versione Corrente 0.7
Ultimo Aggiornamento 2018-09-27
Data di Pubblicazione 2018-09-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Michael Ishri
Tipo di Pagamento free
Sito Web dell'Estensione https://medium.com/@michael.ishri/servicenow-glances-chrome-extension-2e9bc69ce957
URL della Pagina di Aiuto https://medium.com/@michael.ishri/servicenow-glances-chrome-extension-2e9bc69ce957
Lingue Supportate 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"
}