2FAS - Two factor authentication

2FAS - Two factor authentication

2FAS extension is simple, private, and secured: one click, one tap, and your 2FA token is automatically entered!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "2FAS - Two Factor Authentication",
  "short_name": "2FAS",
  "author": "Two Factor Authentication Service, Inc.",
  "version": "1.7.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "96": "images/icons/icon96.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icons/icon16.png",
      "32": "images/icons/icon32.png",
      "48": "images/icons/icon48.png",
      "96": "images/icons/icon96.png",
      "128": "images/icons/icon128.png"
    }
  },
  "options_ui": {
    "page": "optionsPage/optionsPage.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/content_script.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "content/content_script.css"
      ],
      "all_frames": false,
      "match_about_blank": true
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "commands": {
    "tokenRequest": {
      "description": "__MSG_shortcutDesc__",
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "MacCtrl+Shift+2"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "contextMenus",
    "webNavigation",
    "https://*.2fas.com/*",
    "wss://*.2fas.com/*"
  ],
  "web_accessible_resources": [
    "/fonts/*"
  ]
}