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."입니다.

확장 프로그램 스크린샷

screenshot

Engage Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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).                    

확장 프로그램 기본 정보

이름 Engage Helper Engage Helper
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\/*"
    ]
}