Monotp

Your best and fastest OTP/2FA authenticator

Co to jest Monotp?

Monotp to rozszerzenie Chrome opracowane przez http://monotp.com, a jego główną funkcją jest „Your best and fastest OTP/2FA authenticator”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Monotp

Pobierz pliki rozszerzeń Monotp 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

                        Fully automated 2FA authenticator. Works like a magic!                    

Podstawowe informacje o rozszerzeniu

Nazwa Monotp Monotp
ID dmcipdcejgpjbmbejacmaddglenhinfn
Oficjalny URL https://chrome.google.com/webstore/detail/monotp/dmcipdcejgpjbmbejacmaddglenhinfn
Opis Your best and fastest OTP/2FA authenticator
Rozmiar pliku 1.37 MB
Liczba instalacji 64
Aktualna Wersja 0.0.1.7
Ostatnia Aktualizacja 2020-11-07
Data Publikacji 2020-11-07
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper http://monotp.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://monotp.com
Adres URL Strony Pomocy https://monotp.com/support
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Monotp",
    "version": "0.0.1.7",
    "description": "Your best and fastest OTP\/2FA authenticator",
    "homepage_url": "https:\/\/monotp.com",
    "default_locale": "en",
    "manifest_version": 2,
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/monotp-logo-19.png",
        "default_title": "Monotp Authenticator",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/monotp-logo-16.png",
        "48": "icons\/monotp-logo-48.png",
        "128": "icons\/monotp-logo-128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "clipboardRead",
        "clipboardWrite",
        "contentSettings",
        "contextMenus",
        "notifications",
        "tabs",
        "background",
        "",
        "ws:\/\/*\/*",
        "wss:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; "
}