Examine source code of Basic Auth Manager

Inspect and view changes in Basic Auth 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
{
  "manifest_version": 3,
  "name": "Basic Auth Manager",
  "version": "1.2",
  "description": "This extension allows you to manage basic auth credentials for websites.",
  "permissions": [
    "activeTab",
    "storage",
    "webRequest",
    "webRequestAuthProvider",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/bootstrap.min.css",
        "lib/bootstrap.bundle.min.js",
        "lib/qr-code.min.js",
        "popup.css",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "192": "icon192.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "192": "icon192.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}