Imprivata PAM Browser Extension

Imprivata Privileged Access Manager Extension
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Imprivata PAM Browser Extension",
  "short_name": "ImprivataPAM",
  "description": "Imprivata Privileged Access Manager Extension",
  "homepage_url": "https://www.imprivata.com/",
  "author": "Imprivata, Inc.",
  "version": "1.49",
  "action": {
    "default_icon": {
      "16": "img/XtonLogo_16x16.png",
      "32": "img/XtonLogo_32x32.png",
      "48": "img/XtonLogo_48x48.png",
      "64": "img/XtonLogo_64x64.png",
      "96": "img/XtonLogo_96x96.png"
    },
    "default_title": "Imprivata Privileged Access Manager",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "img/XtonLogo_16x16.png",
    "32": "img/XtonLogo_32x32.png",
    "48": "img/XtonLogo_48x48.png",
    "64": "img/XtonLogo_64x64.png",
    "96": "img/XtonLogo_96x96.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "plugins/jquery-3.2.1.min.js",
        "plugins/bililiteRange.js",
        "plugins/sendkeys.js",
        "js/background.js",
        "js/globalConfig.js",
        "js/injector.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "plugins/jquery-3.2.1.min.js",
        "plugins/bililiteRange.js",
        "plugins/sendkeys.js",
        "js/background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}