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\/*" ] } |