Examine source code of Browserpass

Inspect and view changes in Browserpass 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": "Browserpass",
  "description": "Browser extension for zx2c4's pass (password manager)",
  "version": "3.10.2",
  "author": "Maxim Baz <browserpass@maximbaz.com>, Steve Gilberd <steve@erayd.net>",
  "homepage_url": "https://github.com/browserpass/browserpass-extension",
  "background": {
    "service_worker": "js/background.dist.js"
  },
  "icons": {
    "16": "icon16.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "128": "icon.png"
    },
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "activeTab",
    "alarms",
    "tabs",
    "clipboardRead",
    "clipboardWrite",
    "nativeMessaging",
    "notifications",
    "offscreen",
    "scripting",
    "storage",
    "webRequest",
    "webRequestAuthProvider"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'none'; font-src 'self'; img-src 'self' data:; script-src 'self'"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    },
    "fillBest": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Fill form with the best matching credentials"
    }
  }
}