ZenDesk Refresher

Automatically refreshes the ZenDesk Ticket Counts for the different views

Vad är ZenDesk Refresher?

ZenDesk Refresher är en Chrome-tillägg utvecklad av booleanbean, och dess huvudfunktion är "Automatically refreshes the ZenDesk Ticket Counts for the different views".

Tilläggsskärmbilder

screenshot

Ladda ner ZenDesk Refresher-förlängningens CRX-fil

Ladda ner ZenDesk Refresher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn ZenDesk Refresher ZenDesk Refresher
ID kbnadckimgmhcchlnoddmihobfmloocp
Officiell webbadress https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp
Beskrivning Automatically refreshes the ZenDesk Ticket Counts for the different views
Filstorlek 39.64 KB
Antal Installationer 6,555
Aktuell Version 0.1.4
Senast Uppdaterad 2023-07-21
Publiceringsdatum 2023-01-16
Betyg 4.31/5 Totalt 16 Betyg
Utvecklare booleanbean
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
Hjälpsida URL https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
Stödda Språk 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\/*"
    ]
}