Monotp

Your best and fastest OTP/2FA authenticator

Was ist Monotp?

Monotp ist eine Chrome-Erweiterung, die von http://monotp.com entwickelt wurde, und ihr Hauptmerkmal ist "Your best and fastest OTP/2FA authenticator".

Erweiterungsscreenshots

screenshot

Monotp-Erweiterungs-CRX-Datei herunterladen

Laden Sie Monotp-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Fully automated 2FA authenticator. Works like a magic!                    

Grundlegende Informationen zur Erweiterung

Name Monotp Monotp
ID dmcipdcejgpjbmbejacmaddglenhinfn
Offizielle URL https://chrome.google.com/webstore/detail/monotp/dmcipdcejgpjbmbejacmaddglenhinfn
Beschreibung Your best and fastest OTP/2FA authenticator
Dateigröße 1.37 MB
Installationsanzahl 64
Aktuelle Version 0.0.1.7
Letztes Update 2020-11-07
Veröffentlichungsdatum 2020-11-07
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler http://monotp.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://monotp.com
Hilfeseite URL https://monotp.com/support
Unterstützte Sprachen 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'; "
}