HealthOne Viewer

HealthOne Viewer

Integrates HealthOne with your Practice Management System. (Manifest V2)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "HealthOne Viewer",
  "description": "Integrates HealthOne with your Practice Management System. (Manifest V2)",
  "version": "14.2.0",
  "icons": {
    "48": "icons/healthone-48.jpg"
  },
  "background": {
    "scripts": [
      "external/jquery-3.6.0.min.js",
      "global.js",
      "background-script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.healthone.org.nz/*"
      ],
      "js": [
        "external/jquery-3.6.0.min.js",
        "global.js",
        "demo/demo.js",
        "healthone.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.healthhub.health.nz/concerto/Concerto.htm",
        "*://*.healthhub.health.nz/web/*"
      ],
      "js": [
        "external/jquery-3.6.0.min.js",
        "global.js",
        "healthone.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://localhost/launch*",
        "*://*.srphc.health.nz/launch*"
      ],
      "js": [
        "external/jquery-3.6.0.min.js",
        "global.js",
        "detect-launch.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://localhost/logout/landingpage",
        "*://*.srphc.health.nz/logout/landingpage"
      ],
      "js": [
        "global.js",
        "detect-logout-landing-page.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.healthhub.health.nz/concerto/Login.htm"
      ],
      "js": [
        "global.js",
        "detect-hcs-login.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.healthhub.health.nz/concerto/NoLongerAccessible.htm"
      ],
      "js": [
        "global.js",
        "detect-hcs-no-longer-accessible.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.healthhub.health.nz/*",
    "*://*.srphc.health.nz/*",
    "*://localhost/*"
  ],
  "default_locale": "en",
  "web_accessible_resources": [
    "notification/*",
    "icons/*",
    "demo/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0a1"
    }
  },
  "browser_action": {
    "default_icon": "icons/healthone-inactive-48.png"
  }
}