2! Authenticator

Quickly show your 2 factor codes in the browser!

Co to jest 2! Authenticator?

2! Authenticator to rozszerzenie Chrome opracowane przez https://flytesoft.org, a jego główną funkcją jest „Quickly show your 2 factor codes in the browser!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia 2! Authenticator

Pobierz pliki rozszerzeń 2! Authenticator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Do not wait for an insecure SMS authentication code to arrive on your phone!

2! Authenticator is a web browser extension that allows you to instantly see two-factor authentication codes (TOTP based) for login use on many major websites and apps.

Hard at work on your desktop or laptop computer? Now your two-factor codes are just a click away in your browser!  It is designed to be compatible with the other Authenticator © apps, and its use is similar. 

Easy to Use
Add your two-factor codes by copying and pasting a QR Code image, drag-n-drop a QR code image, scanning a code with your webcam, or manually entering a two-factor key. Now your specific, time based, two-factor code for your online account is just a single click away.

Private and Secure
The extension is built with security and privacy in mind.  Data is never shared with any other entities and a network connection is not required for the use of this extension, with the exception of registering for and the validating of paid features.  

Paid Features
For a one time fee of USD $2.99 you may encrypt your data, lock your codes, and get data backup for life.

Encryption of Data (Paid Feature)
There is the ability to encrypt and lock your data using the latest encryption standards (AES-GCM) with a pin or password. (DO NOT FORGET/LOSE YOUR PIN/PASSWORD!  For security purposes, it is NOT possible to recover your data if your PIN/PASSWORD is lost.)

Data Backup and Transfer (Paid Feature)
Never lose your two-factor codes again!  You may backup all of your two-factor codes in a secure format that may be restored at a later time.  Backup your two-factor codes to a hard drive or cloud service of your choice. Additionally, you may choose to display an individual account’s QR code allowing each two-factor code to be transferred to another device.

Required Permissions
The following permissions will be required to run this extension:

* Read the active tab that is connected to https/secure websites (activeTab):
Allows the extension to scan a QR code on a website that creates a QR code image to be consumed by an authenticator app.  Webpages are only scanned by a user's action: The scan is computed locally and data is never sent over the internet during this process.

* Camera:
Allows the extension to use a webcam device to scan two-factor QR codes put in the webcam’s view.  The camera is only activated by the user’s action.  The scan is computed locally and data is never sent over the internet during this process.

Disclaimer
No software is ever perfect, nor free of bugs.  Data loss and theft can occur. Use layered security and store you data in multiple locations. Password/PIN lengths affect security.  Protect physical access to your device.  Keep your device and software up-to-date.

Known issues:
Only 30 second epoch based TOTP based codes are supported for now.
Some style of QR codes are not supported.
Webpage scan is not always supported as many website actively guard against this and this extension makes no attempt to circumvent those guards.
Webcam use may be limited due to the low quality webcams used in many laptops.

Version History
1.0.1 -- Initial public release.
1.0.2 -- Only show FlyteSoft.org/2-factor website on very first install, not every update or Chrome update.                    

Podstawowe informacje o rozszerzeniu

Nazwa 2! Authenticator 2! Authenticator
ID iklgijhacenjgjgdnpnohbafpbmnccek
Oficjalny URL https://chromewebstore.google.com/detail/2-authenticator/iklgijhacenjgjgdnpnohbafpbmnccek
Opis Quickly show your 2 factor codes in the browser!
Rozmiar pliku 393 KB
Liczba instalacji 299
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2023-12-06
Data Publikacji 2023-05-28
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://flytesoft.org
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://www.flytesoft.org/2-authenticator
Adres URL Strony Pomocy https://www.flytesoft.org/2-authenticator
Adres URL Strony Polityki Prywatności https://www.flytesoft.org/privacy-policy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "2! Authenticator",
    "description": "Quickly show your 2 factor codes in the browser!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "128": "\/icons\/icon128.png"
    },
    "action": {
        "default_title": "2! Authenticator",
        "default_icon": {
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "64": "\/icons\/icon64.png"
        },
        "default_popup": "\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "minimum_chrome_version": "100",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}