Engage Helper

Engage Helper

Helps detect automatically when you're away from your computer and adds enhanced notifications.

Merlin
Additional files are visible only to premium users

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