EDGE Assistant

EDGE Assistant

An extension to fill in EDGE database cost input forms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EDGE Assistant",
  "description": "An extension to fill in EDGE database cost input forms.",
  "version": "2.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "eacontent.js"
      ],
      "matches": [
        "https://edgedemo.edge.nhs.uk/*",
        "https://www.edge.nhs.uk/*",
        "https://nz.edge-clinical.org/*",
        "https://nzdemo.edge-clinical.org/*"
      ]
    }
  ],
  "host_permissions": [
    "http://edgedemo.edge.nhs.uk/",
    "https://www.edge.nhs.uk/",
    "https://edgedemo.edge.nhs.uk/",
    "https://nz.edge-clinical.org/",
    "https://nzdemo.edge-clinical.org/"
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html"
  }
}