Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
什麼是Engage Helper?
Engage Helper是由https://engage.co開發的Chrome擴展程式,該擴展的主要功能是“Helps detect automatically when you're away from your computer and adds enhanced notifications.”。
擴展截圖
下載Engage Helper擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |