Push Authenticator Pro
Push Authenticator Pro for iOS/Android
Что такое Push Authenticator Pro?
Push Authenticator Pro - это расширение Chrome, разработанное tachyonfactory, и его основная функция - "Push Authenticator Pro for iOS/Android".
Снимки экрана расширения
Скачать файл CRX расширения Push Authenticator Pro
Скачайте файлы расширений Push Authenticator Pro в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Push Authenticator Pro uses push messaging for two-factor authentication. Chrome Extension allows you to send push requests to iOS/Android app. You'll get push message from iOS/Android app and send two-factor authentication codes to the Chrome. YouTube video: https://www.youtube.com/watch?v=3TVLOAknvrI iOS app and Android app is available from https://bit.ly/pap-install .
Основная информация о расширении
Название | Push Authenticator Pro |
ID | bmkgobnckmhcmpdhojfmanpanbhjfmce |
Официальный URL | https://chromewebstore.google.com/detail/push-authenticator-pro/bmkgobnckmhcmpdhojfmanpanbhjfmce |
Описание | Push Authenticator Pro for iOS/Android |
Размер файла | 102 KB |
Количество установок | 343 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2019-06-29 |
Дата публикации | 2019-06-25 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | tachyonfactory |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://tachyonfactory.com/pushauthenticatorpro/help.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Push Authenticator Pro", "description": "Push Authenticator Pro for iOS\/Android", "version": "1.0.0", "icons": { "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "aes-js.js", "base32.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "cs.js" ], "css": [ "cs.css" ], "all_frames": false, "run_at": "document_idle" } ], "permissions": [ "activeTab", "storage", "clipboardWrite" ] } |