Capsule Inventory Solution

Capsule Inventory Solution

Checks if medicine is available in Capsule Pharmacy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Capsule Inventory Solution",
  "description": "Checks if medicine is available in Capsule Pharmacy",
  "version": "1.4",
  "host_permissions": [
    "*://preview.athenahealth.com/*",
    "*://identity.athenahealth.com/*",
    "*://athenanet.athenahealth.com/*"
  ],
  "permissions": [
    "webRequest",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://preview.athenahealth.com/*",
        "*://athenanet.athenahealth.com/*"
      ],
      "js": [
        "dist/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/scripts/inject.js"
      ],
      "matches": [
        "*://preview.athenahealth.com/*",
        "*://athenanet.athenahealth.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "dist/background.js"
  },
  "action": {
    "default_icon": "public/capsuleIcon.png",
    "default_popup": "public/popup.html"
  },
  "icons": {
    "16": "public/capsuleIcon16.png",
    "48": "public/capsuleIcon48.png",
    "128": "public/capsuleIcon128.png"
  }
}