Zendesk Auto Refresh

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

Zendesk Auto Refresh क्या है?

Zendesk Auto Refresh brandon stubbs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a third party plugin that will enforce zendesk to refresh."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Zendesk Auto Refresh एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}