2FA Notifier
Notifies users whether the current browser page supports 2FA or not.
2FA Notifier란 무엇입니까?
2FA Notifier은(는) https://2fanotifier.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notifies users whether the current browser page supports 2FA or not."입니다.
확장 프로그램 스크린샷
2FA Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Two Factor Authentication (2FA) is a fantastic way to make it harder for hackers to hijack your accounts, even if they somehow steal your password. But, it only works if you actually enable it!! 2FA Notifier lets you know which sites you visit support 2FA and specifically how to enable it. Anytime you visit a site that supports 2FA, you will get a notification that let's you know. Clicking on the notification will bring you directly to the site's documentation explaining how to enable 2FA. The right information, right when you need it! Better protect your accounts from hackers by installing 2FA Notifier and enabling 2FA everywhere you can! ----- We would really appreciate the opportunity to address any issues or bugs before you leave a poor rating. Unfortunately, we cannot reply to comments left on ratings, so it is difficult to understand the issue and fix it. We are very responsive to all issues filed on GitHub: https://github.com/conorgil/2fa-notifier/issues. Thanks!
확장 프로그램 기본 정보
이름 | 2FA Notifier |
ID | lggnfpepjfjffimehbjeofegcbmhogoj |
공식 URL | https://chromewebstore.google.com/detail/2fa-notifier/lggnfpepjfjffimehbjeofegcbmhogoj |
설명 | Notifies users whether the current browser page supports 2FA or not. |
파일 크기 | 466 KB |
설치 횟수 | 540 |
현재 버전 | 0.8.1 |
최근 업데이트 | 2019-02-17 |
출시 날짜 | 2019-02-16 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | https://2fanotifier.org |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://2fanotifier.org |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "2FA Notifier", "manifest_version": 2, "version": "0.8.1", "author": "Conor Gilsenan", "description": "Notifies users whether the current browser page supports 2FA or not.", "background": { "scripts": [ "generatedJS\/background.bundle.js" ], "persistent": true }, "browser_action": { "default_popup": "browserAction\/popup.html", "default_title": "2FA Notifier", "default_icon": { "16": "icons\/no_2fa.png", "32": "icons\/[email protected]", "48": "icons\/[email protected]" } }, "icons": { "48": "icons\/app_icon_48.png", "128": "icons\/app_icon_128.png" }, "permissions": [ "storage", "tabs", "notifications" ], "web_accessible_resources": [ "**\/*.html", "**\/*.css", "**\/*.js", "**\/*.png" ] } |