2FA Authenticator

This extension provides 2FA authentication codes in the browser.

Hvad er 2FA Authenticator?

2FA Authenticator er en Chrome-udvidelse udviklet af hemancini, og dens hovedfunktion er "This extension provides 2FA authentication codes in the browser.".

Download 2FA Authenticator-udvidelses-CRX-fil

Download 2FA Authenticator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn 2FA Authenticator 2FA Authenticator
ID pnnmjhghimefjdmdilmlhnojccjgpgeh
Officiel URL https://chromewebstore.google.com/detail/2fa-authenticator/pnnmjhghimefjdmdilmlhnojccjgpgeh
Beskrivelse This extension provides 2FA authentication codes in the browser.
Filstørrelse 373 KB
Antal Installationer 94
Nuværende Version 1.2.0
Senest Opdateret 2024-02-08
Udgivelsesdato 2023-07-17
Udvikler hemancini
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}