ZenDesk Refresher

Automatically refreshes the ZenDesk Ticket Counts for the different views

¿Qué es ZenDesk Refresher?

ZenDesk Refresher es una extensión de Chrome desarrollada por booleanbean, y su función principal es "Automatically refreshes the ZenDesk Ticket Counts for the different views".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ZenDesk Refresher

Descarga archivos de extensión ZenDesk Refresher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre ZenDesk Refresher ZenDesk Refresher
ID kbnadckimgmhcchlnoddmihobfmloocp
URL Oficial https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp
Descripción Automatically refreshes the ZenDesk Ticket Counts for the different views
Tamaño del Archivo 39.64 KB
Cantidad de Instalaciones 6,555
Versión Actual 0.1.4
Última Actualización 2023-07-21
Fecha de Publicación 2023-01-16
Calificación 4.31/5 Total de 16 Calificaciones
Desarrollador booleanbean
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
URL de la Página de Ayuda https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
Idiomas Soportados 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\/*"
    ]
}