Push Authenticator
Two Factor Authentication Simplified using Push Notification Verification
Что такое Push Authenticator?
Push Authenticator - это расширение Chrome, разработанное push-authenticator-developers, и его основная функция - "Two Factor Authentication Simplified using Push Notification Verification".
Снимки экрана расширения
Скачать файл CRX расширения Push Authenticator
Скачайте файлы расширений Push Authenticator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows you to receive two factor authentication codes via push notification instead of manually copying the code from your phone.
Основная информация о расширении
Название | |
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" ] } |