ZenDesk Refresher

Automatically refreshes the ZenDesk Ticket Counts for the different views

ZenDesk Refresher란 무엇입니까?

ZenDesk Refresher은(는) booleanbean에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically refreshes the ZenDesk Ticket Counts for the different views"입니다.

확장 프로그램 스크린샷

screenshot

ZenDesk Refresher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 ZenDesk Refresher ZenDesk Refresher
ID kbnadckimgmhcchlnoddmihobfmloocp
공식 URL https://chromewebstore.google.com/detail/zendesk-refresher/kbnadckimgmhcchlnoddmihobfmloocp
설명 Automatically refreshes the ZenDesk Ticket Counts for the different views
파일 크기 39.64 KB
설치 횟수 6,555
현재 버전 0.1.4
최근 업데이트 2023-07-21
출시 날짜 2023-01-16
평점 4.31/5 총 16 개의 평점
개발자 booleanbean
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
도움말 페이지 URL https://github.com/scott-w-maxwell/ZenDeskFilterRefresh
지원되는 언어 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\/*"
    ]
}