Akamai MFA

Akamai MFA

The Akamai MFA app for Chrome is the companion to the Akamai MFA mobile app for your smart phone. The Akamai MFA Chrome extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Akamai MFA",
  "version": "2.0.6",
  "minimum_chrome_version": "36.0.1985.18",
  "icons": {
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://localhost/*",
        "http://*.localhost/*"
      ],
      "exclude_matches": [
        "https://*/*.xml"
      ],
      "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": [
    "activeTab",
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "externally_connectable": {
    "ids": [],
    "accepts_tls_channel_id": true
  },
  "web_accessible_resources": [
    "js/inject_webauthn.js",
    "img/*"
  ]
}