Engage Helper

Helps detect automatically when you're away from your computer and adds enhanced notifications.

O que é Engage Helper?

Engage Helper é uma extensão do Chrome desenvolvida por https://engage.co, e sua principal característica é "Helps detect automatically when you're away from your computer and adds enhanced notifications.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Engage Helper

Baixe arquivos de extensão Engage Helper 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

                        The Engage Helper for Chrome provides a handshake via https://developer.chrome.com/extensions/idle, your local (desktop) computer, and the HTML5 Engage dashboard application.  The goal of this handshake is to understand when your computer system becomes idle or locked, which in turn will change your Engage presence status from "Online! Chat Now" to offline. The goal being to prevent you showing as "Online!" when you've stepped away from your computer terminal. Additional system activity monitored can include keyboard and mouse events to determine when your are inactive, then set you to away or offline status after a pre-determined amount of time.  The inactivity period by default is set to 1 minute (60 seconds).                    

Informações Básicas da Extensão

Nome Engage Helper Engage Helper
ID olaeiifidkbkhckfbjmjdibbenpagnan
URL Oficial https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan
Descrição Helps detect automatically when you're away from your computer and adds enhanced notifications.
Tamanho do Arquivo 40.04 KB
Contagem de Instalações 108
Versão Atual 1.1.9
Última Atualização 2015-11-14
Data de Publicação 2015-11-13
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://engage.co
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Engage Helper",
    "version": "1.1.9",
    "description": "Helps detect automatically when you're away from your computer and adds enhanced notifications.",
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-19.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.engage.co\/*",
                "http:\/\/localhost\/engage\/html5-chat\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "idle",
        "tabs",
        "https:\/\/*.engage.com\/*",
        "http:\/\/localhost\/*"
    ]
}