Regzen - Passwordless MFA

Regzen - Passwordless MFA

Sign-in to websites and services using no passwords or usernames. Secure your credentials with our anti-phishing solutions.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Regzen - Passwordless MFA",
  "short_name": "Regzen",
  "description": "Sign-in to websites and services using no passwords or usernames. Secure your credentials with our anti-phishing solutions.",
  "version": "1.0.6",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Regzen - Passwordless Authentication",
    "default_popup": "index.html",
    "default_icon": "assets/logged-out/no_website.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  },
  "background": {
    "persistent": true,
    "scripts": [
      "static/js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/regzen-icon-16.png",
    "48": "assets/icons/regzen-icon-48.png",
    "128": "assets/icons/regzen-icon-128.png"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}