Templates to EMR

Templates to EMR

Сonnects Interactive Templates interface with OSCAR EMR enabling seamless transfer of data from templates to Encounter Notes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Templates to EMR",
  "description": "Сonnects Interactive Templates interface with OSCAR EMR enabling seamless transfer of data from templates to Encounter Notes.",
  "version": "1.0.5",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/disabled_icon.png",
    "default_popup": "popup.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "45.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://sp.forextester.com/*",
        "http://127.0.0.1:8000/*",
        "http://ftdev.ddns.net:185/*"
      ],
      "js": [
        "js/templates.js"
      ]
    },
    {
      "matches": [
        "http://signup5.junoemr.com/*/casemgmt/forward.jsp*",
        "https://signup5.junoemr.com/*/casemgmt/forward.jsp*"
      ],
      "js": [
        "js/utils/insertText.js",
        "js/oscar.js"
      ],
      "css": [
        "css/oscar.css"
      ]
    },
    {
      "matches": [
        "http://signup5.junoemr.com/*/web/*",
        "https://signup5.junoemr.com/*/web/*"
      ],
      "js": [
        "js/utils/insertText.js",
        "js/juno.js"
      ],
      "css": [
        "css/juno.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": []
}