AT&T MFA for Firefox

AT&T MFA for Firefox

The AT&T MFA Firefox extension is the companion to the AT&T MFA Authenticator app for iOS and Android. This extension makes it possible to use your phone as a security key authenticator with Firefox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AT&T MFA",
  "version": "2.2.0",
  "minimum_chrome_version": "88",
  "icons": {
    "128": "img/icon.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://mfa.acdn.att.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/content_script.js"
      ],
      "css": [
        "content_script.css"
      ]
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/babel_polyfill.js",
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "img/icon.png"
    }
  },
  "permissions": [
    "https://mfa.acdn.att.com/*",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "js/inject.js",
    "img/*"
  ]
}