2FAS - Two Factor Authentication

2FAS - Two Factor Authentication

2FAS Browser Extension is simple, private, and secure: 1 click, 1 tap, and your token is automatically entered!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "2FAS - Two Factor Authentication",
  "short_name": "2FAS",
  "author": "Two Factor Authentication Service, Inc.",
  "version": "1.7.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"
  },
  "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": {
    "service_worker": "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": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "commands": {
    "tokenRequest": {
      "description": "__MSG_shortcutDesc__",
      "global": false,
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "MacCtrl+Shift+2"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "contextMenus",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*.2fas.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}