Applied Epic Extension

Applied Epic Extension

Support advanced functionality while working in Applied Epic.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "default_locale": "en",
  "author": "Applied Systems",
  "description": "__MSG_extDescription__",
  "version": "3.16.3",
  "externally_connectable": {
    "matches": [
      "*://*.appliedepic.com/*"
    ]
  },
  "manifest_version": 3,
  "permissions": [
    "nativeMessaging",
    "management",
    "cookies",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.appliedepic.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.appliedepic.com/*"
  ]
}