BeyondTrust Workforce Passwords

BeyondTrust Workforce Passwords

Securely use credentials stored in BeyondTrust's Password Safe application to simplify logging into your favorite websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BeyondTrust Workforce Passwords",
  "description": "Securely use credentials stored in BeyondTrust's Password Safe application to simplify logging into your favorite websites.",
  "version": "24.1.0.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_globs": [
        "chrome-extension://*"
      ],
      "all_frames": true,
      "js": [
        "lib/browser-polyfill.min.js",
        "lib/vendor/psl.min.js",
        "lib/utils/feature-flags.js",
        "content-scripts/content.js"
      ],
      "css": [
        "lib/css/vars.css",
        "lib/css/inline.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "version.js",
        "lib/css/*",
        "lib/icons/*",
        "lib/utils/*",
        "lib/open-sans/*",
        "lib/vendor/*",
        "content-scripts/*",
        "images/logo-32.png"
      ]
    }
  ],
  "minimum_chrome_version": "109",
  "options_page": "options/options.html",
  "background": {
    "service_worker": "background/chromium.js"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "contextMenus",
    "clipboardWrite",
    "favicon",
    "notifications",
    "offscreen",
    "storage",
    "tabs",
    "unlimitedStorage"
  ]
}