2FA Authenticator app

2FA Authenticator app

Free 2FA Authenticator app, Chrome extension alternative to Google Authenticator. Secured with your typing biometrics (optional).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.52",
  "author": "TypingDNA",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "homepage_url": "https://www.typingdna.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "action": {
    "default_icon": "icons/icon128.png",
    "default_title": "2FA Authenticator app - MV3",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "activeTab",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://authenticator.typingdna.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "https://authenticator.typingdna.com/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}