Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
Τι είναι το Engage Helper;
Το Engage Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://engage.co, και η κύρια λειτουργία του είναι "Helps detect automatically when you're away from your computer and adds enhanced notifications.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Engage Helper
Λήψη αρχείων επέκτασης Engage Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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).
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | olaeiifidkbkhckfbjmjdibbenpagnan |
Επίσημο URL | https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan |
Περιγραφή | Helps detect automatically when you're away from your computer and adds enhanced notifications. |
Μέγεθος Αρχείου | 40.04 KB |
Αριθμός Εγκαταστάσεων | 108 |
Τρέχουσα Έκδοση | 1.1.9 |
Τελευταία Ενημέρωση | 2015-11-14 |
Ημερομηνία Δημοσίευσης | 2015-11-13 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://engage.co |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } |