web2FA - Browser Authenticator

web2FA - Browser Authenticator

Web2FA lets you add, generate and manage 2FA codes in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "web2FA - Browser Authenticator",
  "description": "Web2FA lets you add, generate and manage 2FA codes in your browser",
  "version": "1.5.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/background.js"
  },
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "web2FA"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/otpauth.js",
        "scripts/qrcode.js",
        "scripts/content_script.js"
      ],
      "css": [
        "scripts/injected_css.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}