Engage Helper

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

Qu'est-ce que Engage Helper ?

Engage Helper est une extension Chrome développée par https://engage.co, et sa fonction principale est "Helps detect automatically when you're away from your computer and adds enhanced notifications.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Engage Helper

Téléchargez les fichiers d'extension Engage Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Engage Helper Engage Helper
ID olaeiifidkbkhckfbjmjdibbenpagnan
URL Officiel https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan
Description Helps detect automatically when you're away from your computer and adds enhanced notifications.
Taille du Fichier 40.04 KB
Nombre d'Installations 108
Version Actuelle 1.1.9
Dernière Mise à Jour 2015-11-14
Date de Publication 2015-11-13
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://engage.co
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}