Zendesk Auto Refresh

This is a third party plugin that will enforce zendesk to refresh.

Zendesk Auto Refresh란 무엇입니까?

Zendesk Auto Refresh은(는) brandon stubbs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a third party plugin that will enforce zendesk to refresh."입니다.

확장 프로그램 스크린샷

screenshot

Zendesk Auto Refresh 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a Third Party extension to refresh Zendesk.
You will be able to enable/disable and set the refresh interval in seconds for the following zendesk sections:
- Dashboard (Home)
- Views (Note: These are only refreshed automatically if you are on the first page to prevent navigating you away from other pages on refresh)

To change the settings please right click on the extension and click Options.

You can view the source code in github, if you do not trust this extension then you can build and add it to chrome yourself.
https://github.com/brandonstubbs/ZendeskRefresh

version changes:
3.1.2 - change selectors (zendesk update)
3.1.1 - change selectors (zendesk update), remove customerList from options
3.1.0 - change selectors, remove client list refresh (I don't have access to this anymore)
3.0.1 - change selectors                    

확장 프로그램 기본 정보

이름 Zendesk Auto Refresh Zendesk Auto Refresh
ID fienhnlhhgmpnedllhaofmbekocecghf
공식 URL https://chromewebstore.google.com/detail/zendesk-auto-refresh/fienhnlhhgmpnedllhaofmbekocecghf
설명 This is a third party plugin that will enforce zendesk to refresh.
파일 크기 53.94 KB
설치 횟수 10,540
현재 버전 3.1.2
최근 업데이트 2021-04-14
출시 날짜 2018-08-10
평점 3.70/5 총 23 개의 평점
개발자 brandon stubbs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/brandonstubbs
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zendesk Auto Refresh",
    "description": "This is a third party plugin that will enforce zendesk to refresh.",
    "version": "3.1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "45",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.zendesk.com\/agent\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "128": "refresh-icon.png"
        }
    },
    "icons": {
        "128": "refresh-icon.png"
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "https:\/\/*.zendesk.com\/agent\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "author": "Brandon Stubbs"
}