ZenDesk Refresher
Automatically refreshes the ZenDesk Ticket Counts for the different views
Qu'est-ce que ZenDesk Refresher ?
ZenDesk Refresher est une extension Chrome développée par booleanbean, et sa fonction principale est "Automatically refreshes the ZenDesk Ticket Counts for the different views".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ZenDesk Refresher
Téléchargez les fichiers d'extension ZenDesk Refresher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ZenDesk Refresher |
ID | kbnadckimgmhcchlnoddmihobfmloocp |
URL Officiel | https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp |
Description | Automatically refreshes the ZenDesk Ticket Counts for the different views |
Taille du Fichier | 39.64 KB |
Nombre d'Installations | 6,555 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2023-07-21 |
Date de Publication | 2023-01-16 |
Évaluation | 4.31/5 Total 16 Évaluations |
Développeur | booleanbean |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/scott-w-maxwell/ZenDeskFilterRefresh |
URL de la Page d'Aide | https://github.com/scott-w-maxwell/ZenDeskFilterRefresh |
Langues Prises en Charge | 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\/*" ] } |