Engage Helper
Helps detect automatically when you're away from your computer and adds enhanced notifications.
Engage Helper क्या है?
Engage Helper https://engage.co द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps detect automatically when you're away from your computer and adds enhanced notifications."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Engage Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |