Verse Medical Orders

Verse Medical Orders

Conveniently submit orders to versemedical.com by taking screen shots of user information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Verse Medical Orders",
  "description": "Conveniently submit orders to versemedical.com by taking screen shots of user information.",
  "version": "1.0.0.8",
  "manifest_version": 3,
  "icons": {
    "48": "images/favicon.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo.png"
      ],
      "matches": [
        "https://*.healogics.com/*",
        "https://*.ecwcloud.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://versemedical.com/*",
    "https://*.healogics.com/*",
    "https://*.ecwcloud.com/*",
    "https://csdomain.jetlenses.com/*",
    "http://localhost:8181/*",
    "<all_urls>"
  ],
  "action": {
    "default_icon": "images/favicon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.healogics.com/*",
        "https://*.ecwcloud.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    },
    {
      "matches": [
        "https://versemedical.com/extension/install_auth_token*",
        "http://localhost:8181/extension/install_auth_token*"
      ],
      "js": [
        "auth_token_install.js"
      ],
      "css": [
        "auth_token_install.css"
      ]
    }
  ]
}