Push Authenticator

Two Factor Authentication Simplified using Push Notification Verification

Push Authenticator란 무엇입니까?

Push Authenticator은(는) push-authenticator-developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Two Factor Authentication Simplified using Push Notification Verification"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Push Authenticator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Allows you to receive two factor authentication codes via push notification instead of manually copying the code from your phone.                    

확장 프로그램 기본 정보

이름 Push Authenticator Push Authenticator
ID dohecjonbhinehgkkamcnpkdakhghaej
공식 URL https://chromewebstore.google.com/detail/push-authenticator/dohecjonbhinehgkkamcnpkdakhghaej
설명 Two Factor Authentication Simplified using Push Notification Verification
파일 크기 486 KB
설치 횟수 550
현재 버전 2.1
최근 업데이트 2016-08-01
출시 날짜 2016-07-31
평점 1.00/5 총 1 개의 평점
개발자 push-authenticator-developers
결제 유형 free
확장 프로그램 웹 사이트 https://explore.singular.net/authenticator
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Push Authenticator",
    "description": "Two Factor Authentication Simplified using Push Notification Verification",
    "version": "2.1",
    "icons": {
        "128": "icons\/app_icon_128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/app_icon_38x38.png",
        "default_popup": "popup.html",
        "default_title": "Push Authenticator"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "jquery-2.2.4.min.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-2.2.4.min.js",
            "sjcl.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "gcm",
        "storage"
    ]
}