Zendesk Auto Refresh

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

O que é Zendesk Auto Refresh?

Zendesk Auto Refresh é uma extensão do Chrome desenvolvida por brandon stubbs, e sua principal característica é "This is a third party plugin that will enforce zendesk to refresh.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Zendesk Auto Refresh

Baixe arquivos de extensão Zendesk Auto Refresh no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Zendesk Auto Refresh Zendesk Auto Refresh
ID fienhnlhhgmpnedllhaofmbekocecghf
URL Oficial https://chromewebstore.google.com/detail/zendesk-auto-refresh/fienhnlhhgmpnedllhaofmbekocecghf
Descrição This is a third party plugin that will enforce zendesk to refresh.
Tamanho do Arquivo 53.94 KB
Contagem de Instalações 10,540
Versão Atual 3.1.2
Última Atualização 2021-04-14
Data de Publicação 2018-08-10
Classificação 3.70/5 Total de 23 Avaliações
Desenvolvedor brandon stubbs
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/brandonstubbs
Idiomas Suportados 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"
}