Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
¿Qué es Engage Helper?
Engage Helper es una extensión de Chrome desarrollada por https://engage.co, y su función principal es "Helps detect automatically when you're away from your computer and adds enhanced notifications.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Engage Helper
Descarga archivos de extensión Engage Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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).
Información Básica de la Extensión
Nombre | |
ID | olaeiifidkbkhckfbjmjdibbenpagnan |
URL Oficial | https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan |
Descripción | Helps detect automatically when you're away from your computer and adds enhanced notifications. |
Tamaño del Archivo | 40.04 KB |
Cantidad de Instalaciones | 108 |
Versión Actual | 1.1.9 |
Última Actualización | 2015-11-14 |
Fecha de Publicación | 2015-11-13 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://engage.co |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |