Examine source code of Enpass Password Manager

Inspect and view changes in Enpass Password Manager source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Enpass Password Manager",
  "short_name": "Enpass",
  "version": "6.11.3",
  "description": "Enpass extension autofills logins, passwords, credit cards and identities from the Enpass desktop application.",
  "author": "Enpass Technologies Inc.",
  "default_locale": "en",
  "homepage_url": "https://www.enpass.io",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "webNavigation",
    "webRequest",
    "webRequestAuthProvider"
  ],
  "optional_permissions": [
    "privacy"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period"
      }
    },
    "lock": {
      "description": "__MSG_string_shortcut_lock__"
    },
    "autofill": {
      "description": "__MSG_string_shortcut_autofill__"
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "24": "icons/icon-24.png",
    "32": "icons/icon-32.png",
    "40": "icons/icon-40.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/toolbar-chrome-dark.png",
      "32": "icons/toolbar-chrome-dark@2x.png",
      "48": "icons/toolbar-chrome-dark@3x.png",
      "64": "icons/toolbar-chrome-dark-64.png",
      "96": "icons/toolbar-chrome-dark-96.png",
      "128": "icons/toolbar-chrome-dark-128.png",
      "256": "icons/toolbar-chrome-dark-256.png"
    }
  },
  "options_ui": {
    "page": "pages/settings/option.html",
    "open_in_tab": true
  },
  "devtools_page": "pages/inspector/devtools.html",
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "injected/scripts/content.js"
      ],
      "css": [
        "styles/animation-fill.css"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "js": [
        "injected/scripts/webauthnInterceptor.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected/dialog/dialog.html",
        "injected/menu/index.html",
        "pages/images/gradient-bg.svg",
        "pages/images/enpass-145.png",
        "icons/icon-16.png",
        "icons/icon-24.png",
        "icons/icon-locked.svg",
        "icons/icon-unlocked.svg",
        "icons/enpass_blue.svg",
        "icons/enpass_white.svg",
        "icons/cross.svg",
        "icons/cross_dark.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "minimum_chrome_version": "103"
}