ZenDesk Refresher

Automatically refreshes the ZenDesk Ticket Counts for the different views

O que é ZenDesk Refresher?

ZenDesk Refresher é uma extensão do Chrome desenvolvida por booleanbean, e sua principal característica é "Automatically refreshes the ZenDesk Ticket Counts for the different views".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ZenDesk Refresher

Baixe arquivos de extensão ZenDesk Refresher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome ZenDesk Refresher ZenDesk Refresher
ID kbnadckimgmhcchlnoddmihobfmloocp
URL Oficial https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp
Descrição Automatically refreshes the ZenDesk Ticket Counts for the different views
Tamanho do Arquivo 39.64 KB
Contagem de Instalações 6,555
Versão Atual 0.1.4
Última Atualização 2023-07-21
Data de Publicação 2023-01-16
Classificação 4.31/5 Total de 16 Avaliações
Desenvolvedor booleanbean
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
URL da Página de Ajuda https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
Idiomas Suportados 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\/*"
    ]
}