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文件

下載Zendesk Auto Refresh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}