Examine source code of SAASPASS Password Manager & Authenticator 2FA

Inspect and view changes in SAASPASS Password Manager & Authenticator 2FA 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
{
  "author": "SAASPASS, 44 Tehama Street, San Francisco, CA 94105",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/orca-128.png",
    "default_popup": "popup.html",
    "default_title": "SAASPASS Password Manager"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.saaspass.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://www.saaspass.com/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "portal.js"
      ],
      "all_frames": true
    }
  ],
  "description": "SAASPASS is a free password manager & authenticator 2FA code generator with autofill & autologin capabilities.",
  "icons": {
    "128": "icons/orca-128.png"
  },
  "manifest_version": 2,
  "name": "SAASPASS Password Manager & Authenticator 2FA",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "*://*/*",
    "storage",
    "tabs"
  ],
  "short_name": "Password Manager",
  "version": "3.0.1",
  "web_accessible_resources": [
    "selectAccountFrame.html",
    "saveCredentialsFrame.html",
    "src/images/orca-18.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}