Navina Addon

Navina Addon

The Navina extension adds integration between the Navina system and your EMR.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Navina Addon",
  "version": "4.2.13",
  "description": "The Navina extension adds integration between the Navina system and your EMR.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/injected_script_ath.js",
        "js/injected_mutation.js",
        "css/injected_style_ath.css",
        "font/*.woff2",
        "iframe.html",
        "sso-iframe.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}