Zendesk Priority Highlights

Highlight Zendesk tickets in Views based on priority

Cos'è Zendesk Priority Highlights?

Zendesk Priority Highlights è un'estensione di Chrome sviluppata da https://alexculligan.com, e la sua funzione principale è "Highlight Zendesk tickets in Views based on priority".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Zendesk Priority Highlights

Scarica i file di estensione Zendesk Priority Highlights 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

                        This extension no longer uses Google Analytics.

This extension automatically works in the Zendesk Views pages for accounts in most languages supported by Zendesk.

- Identifies tickets that have a Priority.
- Highlights tickets with Urgent priority as red.
- Highlights tickets with High priority as orange.
- Highlights tickets with Normal priority as yellow.
- Highlights tickets with Low priority as green.
- User can choose what priorities to highlight in the options page or the extension icon.                    

Informazioni di Base sull'Estensione

Nome Zendesk Priority Highlights Zendesk Priority Highlights
ID kdnlbgealinpnebnoamnabcpjkifokpk
URL Ufficiale https://chromewebstore.google.com/detail/zendesk-priority-highligh/kdnlbgealinpnebnoamnabcpjkifokpk
Descrizione Highlight Zendesk tickets in Views based on priority
Dimensione del File 185 KB
Conteggio Installazioni 285
Versione Corrente 1.2.6
Ultimo Aggiornamento 2019-07-21
Data di Pubblicazione 2019-07-21
Valutazione 3.71/5 Totale 7 Valutazioni
Sviluppatore https://alexculligan.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://priorityhighlights.alexculligan.com
URL della Pagina di Aiuto http://contact.alexculligan.com
URL della Pagina della Politica sulla Privacy http://license.alexculligan.com
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Alex Culligan",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "name": "Zendesk Priority Highlights",
        "default_icon": {
            "16": "img\/disabled\/16.png",
            "24": "img\/disabled\/24.png",
            "32": "img\/disabled\/32.png",
            "48": "img\/disabled\/48.png",
            "128": "img\/disabled\/128.png",
            "256": "img\/disabled\/256.png"
        },
        "default_popup": "html\/popup-options.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/*.zendesk.com\/agent\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Highlight Zendesk tickets in Views based on priority",
    "icons": {
        "16": "img\/default\/16.png",
        "24": "img\/default\/24.png",
        "32": "img\/default\/32.png",
        "48": "img\/default\/48.png",
        "128": "img\/default\/128.png",
        "256": "img\/default\/256.png"
    },
    "manifest_version": 2,
    "name": "Zendesk Priority Highlights",
    "options_ui": {
        "page": "html\/options.html"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "short_name": "Priority Highlights",
    "version": "1.2.6"
}