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 |
ID | pnnmjhghimefjdmdilmlhnojccjgpgeh |
官方網址 | 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": [ "*:\/\/*\/*" ] } ] } |