Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
Was ist Engage Helper?
Engage Helper ist eine Chrome-Erweiterung, die von https://engage.co entwickelt wurde, und ihr Hauptmerkmal ist "Helps detect automatically when you're away from your computer and adds enhanced notifications.".
Erweiterungsscreenshots
Engage Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Engage Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | |
ID | olaeiifidkbkhckfbjmjdibbenpagnan |
Offizielle URL | https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan |
Beschreibung | Helps detect automatically when you're away from your computer and adds enhanced notifications. |
Dateigröße | 40.04 KB |
Installationsanzahl | 108 |
Aktuelle Version | 1.1.9 |
Letztes Update | 2015-11-14 |
Veröffentlichungsdatum | 2015-11-13 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://engage.co |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |