Free Password Manager & Authenticator & SSO

Free Password Manager & Authenticator & SSO

The free password manager extension comes with autofill & autologin including websites that support the Authenticator format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.saaspass.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://www.saaspass.com/*"
      ],
      "js": [
        "portal.js"
      ],
      "all_frames": true
    }
  ],
  "description": "The free password manager extension comes with autofill & autologin including websites that support the Authenticator format.",
  "icons": {
    "128": "icons/orca-128.png"
  },
  "manifest_version": 2,
  "name": "Free Password Manager & Authenticator & SSO",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "*://*/*",
    "storage",
    "tabs"
  ],
  "short_name": "Password Manager",
  "version": "3.0.3",
  "web_accessible_resources": [
    "selectAccountFrame.html",
    "saveCredentialsFrame.html",
    "src/images/orca-18.png"
  ]
}