2FA Authenticator
This extension provides 2FA authentication codes in the browser.
Cos'è 2FA Authenticator?
2FA Authenticator è un'estensione di Chrome sviluppata da hemancini, e la sua funzione principale è "This extension provides 2FA authentication codes in the browser.".
Scarica il file CRX dell'estensione 2FA Authenticator
Scarica i file di estensione 2FA Authenticator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Esta extensión proporciona códigos de autenticación 2FA en el navegador.
Informazioni di Base sull'Estensione
Nome | 2FA Authenticator |
ID | pnnmjhghimefjdmdilmlhnojccjgpgeh |
URL Ufficiale | https://chromewebstore.google.com/detail/2fa-authenticator/pnnmjhghimefjdmdilmlhnojccjgpgeh |
Descrizione | This extension provides 2FA authentication codes in the browser. |
Dimensione del File | 373 KB |
Conteggio Installazioni | 94 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2024-02-08 |
Data di Pubblicazione | 2023-07-17 |
Sviluppatore | hemancini |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } ] } |