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 |
公式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 |
Eメール | [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": [ "*:\/\/*\/*" ] } ] } |