2FA Authenticator

This extension provides 2FA authentication codes in the browser.

2FA Authenticator là gì?

2FA Authenticator là một tiện ích mở rộng Chrome được phát triển bởi hemancini, và tính năng chính của nó là "This extension provides 2FA authentication codes in the browser.".

Tải xuống tệp CRX của tiện ích mở rộng 2FA Authenticator

Tải xuống các tệp mở rộng 2FA Authenticator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 2FA Authenticator 2FA Authenticator
ID pnnmjhghimefjdmdilmlhnojccjgpgeh
URL Chính Thức https://chromewebstore.google.com/detail/2fa-authenticator/pnnmjhghimefjdmdilmlhnojccjgpgeh
Mô tả This extension provides 2FA authentication codes in the browser.
Kích Thước Tệp 373 KB
Số Lần Cài Đặt 94
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2023-07-17
Nhà Phát Triển hemancini
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}