2FA Authenticator

This extension provides 2FA authentication codes in the browser.

什么是2FA Authenticator?

2FA Authenticator是由hemancini开发的Chrome扩展程序,该扩展的主要功能是“This extension provides 2FA authentication codes in the browser.”。

下载2FA Authenticator扩展crx文件

下载2FA Authenticator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Esta extensión proporciona códigos de autenticación 2FA en el navegador.                    

扩展基本信息

名称 2FA Authenticator 2FA Authenticator
ID pnnmjhghimefjdmdilmlhnojccjgpgeh
官方URL https://chromewebstore.google.com/detail/2fa-authenticator/pnnmjhghimefjdmdilmlhnojccjgpgeh
简介 This extension provides 2FA authentication codes in the browser.
文件大小 373 KB
安装次数 94
当前版本 1.2.0
更新时间 2024-02-08
上架时间 2023-07-17
开发者 hemancini
电子邮箱 [email protected]
付费类型 free
支持的语言 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "default_locale": "es",
    "version": "1.2.0",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/hemancini\/2fa-authenticator.git",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "scripting",
        "sidePanel"
    ],
    "side_panel": {
        "default_path": "src\/pages\/sidePanel\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "commands": {
        "scan-qr": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Scan a QR code"
        }
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.us.trustedauth.com\/*"
            ],
            "js": [
                "src\/pages\/bypass\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle17074288184.chunk.css"
            ]
        }
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}