AdsPower Authenticator
2FA codes generator and auto-login manager. Together with the AdsPower browser, this tool makes the Internet a safer place.
AdsPower Authenticator란 무엇입니까?
AdsPower Authenticator은(는) https://adspower.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "2FA codes generator and auto-login manager. Together with the AdsPower browser, this tool makes the Internet a safer place."입니다.
확장 프로그램 스크린샷
AdsPower Authenticator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
AdsPower Authenticator makes your login safer and faster. With the help it, you can save all your passwords, fill forms and complete auto-logins. 🌎 Applicable to all websites ● Quickly log in to your account on Facebook, Google, Amazon and other websites. 📟 Generate 2FA verification codes ● For generating 2FA verification codes; TOTP 2FA supported. ● Manage 2FA keys to all websites in one place to avoid losing or forgetting the keys. ⚡️Quick login ● Right-click menu with quick login feature for immediate access to account information. ● Auto-fill in login information, saving the time of manually typing. 🔒Data security ● AES 256 encryption employed to secure user data and avoid password leaks. ● All data are encrypted and stored on local devices, and will never be uploaded to cloud. 👩💻Type-as-human ● Simulate human typing when filling our passwords to avoid detection of copy-and-paste actions.
확장 프로그램 기본 정보
이름 | AdsPower Authenticator |
ID | chcmmdbpbocmnmbhpbjchdgjjhbnfige |
공식 URL | https://chromewebstore.google.com/detail/adspower-authenticator/chcmmdbpbocmnmbhpbjchdgjjhbnfige |
설명 | 2FA codes generator and auto-login manager. Together with the AdsPower browser, this tool makes the Internet a safer place. |
파일 크기 | 865 KB |
설치 횟수 | 409 |
현재 버전 | 0.1.7 |
최근 업데이트 | 2024-02-29 |
출시 날짜 | 2023-10-07 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://adspower.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.adspower.net/?code=cdyhqt&source=authenticator |
개인정보 보호 정책 페이지 URL | https://www.adspower.com/privacy-policy |
지원되는 언어 | en,vi,es,ru,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_ext_name__", "version": "0.1.7", "default_locale": "en", "description": "__MSG_ext_description__", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "action": { "default_title": "__MSG_ext_name__", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "contextMenus", "cookies" ], "host_permissions": [ "*:\/\/*.adspower.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |