athenaNet Device Manager (ADM)

athenaNet Device Manager (ADM)

Integrate devices with athenaNet and monitor the health of these devices

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "athenaNet Device Manager (ADM)",
  "version": "1.9",
  "manifest_version": 2,
  "description": "Integrate devices with athenaNet and monitor the health of these devices",
  "icons": {
    "128": "athena.ico"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "management"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/default.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.athenahealth.com/*",
        "https://*.athenahealthpayment.com/*"
      ],
      "js": [
        "main.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.athenahealth.com/*",
      "https://*.athenahealthpayment.com/*"
    ]
  }
}