ZenDesk Refresher

Automatically refreshes the ZenDesk Ticket Counts for the different views

Cos'è ZenDesk Refresher?

ZenDesk Refresher è un'estensione di Chrome sviluppata da booleanbean, e la sua funzione principale è "Automatically refreshes the ZenDesk Ticket Counts for the different views".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ZenDesk Refresher

Scarica i file di estensione ZenDesk Refresher 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

                        Upon installation, this extension will check if the site visited is a ZenDesk support domain. Once it detects you have, it will inject a script to refresh the ticket count automatically so that you know when a customer has responded or created a new ticket.

You can change the amount of time between refreshes by clicking the extension icon.

This extension is open source and no data is collected.
Select "Website" to the right to view the code.

Update 0.1.4 changes:
- Fixed issue with interference with CC
- Removed history permission and replaced with webNavigation permission                    

Informazioni di Base sull'Estensione

Nome ZenDesk Refresher ZenDesk Refresher
ID kbnadckimgmhcchlnoddmihobfmloocp
URL Ufficiale https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp
Descrizione Automatically refreshes the ZenDesk Ticket Counts for the different views
Dimensione del File 39.64 KB
Conteggio Installazioni 6,555
Versione Corrente 0.1.4
Ultimo Aggiornamento 2023-07-21
Data di Pubblicazione 2023-01-16
Valutazione 4.31/5 Totale 16 Valutazioni
Sviluppatore booleanbean
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
URL della Pagina di Aiuto https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ZenDesk Refresher",
    "description": "Automatically refreshes the ZenDesk Ticket Counts for the different views",
    "version": "0.1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*.zendesk.com\/agent\/*"
    ]
}