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