Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
Engage Helper là gì?
Engage Helper là một tiện ích mở rộng Chrome được phát triển bởi https://engage.co, và tính năng chính của nó là "Helps detect automatically when you're away from your computer and adds enhanced notifications.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Engage Helper
Tải xuống các tệp mở rộng Engage Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | olaeiifidkbkhckfbjmjdibbenpagnan |
URL Chính Thức | https://chromewebstore.google.com/detail/engage-helper/olaeiifidkbkhckfbjmjdibbenpagnan |
Mô tả | Helps detect automatically when you're away from your computer and adds enhanced notifications. |
Kích Thước Tệp | 40.04 KB |
Số Lần Cài Đặt | 108 |
Phiên Bản Hiện Tại | 1.1.9 |
Cập Nhật Lần Cuối | 2015-11-14 |
Ngày Phát Hành | 2015-11-13 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://engage.co |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |