Acclivity Health

Acclivity Health

Shows fast access list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Acclivity Health",
  "version": "2.2",
  "description": "Shows fast access list.",
  "permissions": [
    "notifications",
    "storage",
    "https://qa.acclivityhealth.com/*",
    "https://stage.acclivityhealth.com/*",
    "https://client.acclivityhealth.com/*",
    "https://*/*",
    "http://*/*"
  ],
  "browser_action": {
    "default_icon": "logoBw.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "lib/jquery.min.js",
      "lib/moment.min.js"
    ],
    "matches": [
      "https://qa.acclivityhealth.com/*",
      "https://stage.acclivityhealth.com/*",
      "https://client.acclivityhealth.com/*",
      "http://*/*",
      "https://*/*"
    ]
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://qa.acclivityhealth.com/*",
        "https://stage.acclivityhealth.com/*",
        "https://client.acclivityhealth.com/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}