Akamai MFA for Firefox

Akamai MFA for Firefox

The Akamai MFA Firefox extension is the companion to the Akamai 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": "Akamai 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": [
        "http://localhost/*",
        "http://*.localhost/*",
        "https://*.local/*",
        "https://*.pr.pushzero-dev.akamai.com/*",
        "https://pushzero-dev.akamai.com/*",
        "https://pushzero-test.akamai.com/*",
        "https://pushzero-staging.akamai.com/*",
        "https://mfa.akamai.com/*",
        "https://try-webauthn.appspot.com/*",
        "https://webauthn.bin.coffee/*",
        "https://webauthn.io/*",
        "https://webauthn.me/*",
        "https://sso.rediris.es/*",
        "https://*.idpnube.rediris.es/*",
        "https://mfa.sir2.rediris.es/*"
      ],
      "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": [
    "http://localhost/*",
    "http://*.localhost/*",
    "https://*.local/*",
    "https://*.pr.pushzero-dev.akamai.com/*",
    "https://pushzero-dev.akamai.com/*",
    "https://pushzero-test.akamai.com/*",
    "https://pushzero-staging.akamai.com/*",
    "https://mfa.akamai.com/*",
    "https://try-webauthn.appspot.com/*",
    "https://webauthn.bin.coffee/*",
    "https://webauthn.io/*",
    "https://webauthn.me/*",
    "https://sso.rediris.es/*",
    "https://*.idpnube.rediris.es/*",
    "https://mfa.sir2.rediris.es/*",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "js/inject.js",
    "img/*"
  ]
}