TOTP Authenticator

TOTP Authenticator

Get 2FA OTP instantly from your mobile. Works with TOTP Authenticator mobile app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TOTP Authenticator",
  "version": "4",
  "description": "Get OTP instantly from your device.",
  "permissions": [
    "*://totpauthenticator.firebaseapp.com/*",
    "storage",
    "activeTab",
    "identity",
    "notifications",
    "*://*.binaryboot.com/*",
    "clipboardWrite",
    "clipboardRead"
  ],
  "homepage_url": "https://www.binaryboot.com/case_study/totp",
  "background": {
    "page": "index.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "assets/images/app_icon128.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "assets/images/app_icon16.png",
    "32": "assets/images/app_icon32.png",
    "48": "assets/images/app_icon48.png",
    "128": "assets/images/app_icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.binaryboot.com/*"
      ],
      "js": [
        "assets/js/connect.firefox.js"
      ]
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "assets/images/app_icon32.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{98e69bc7-6003-4522-865c-34f3ee5653e3}"
    }
  }
}