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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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": [ "*:\/\/*\/*" ] } ] } |