NLToken

NLToken supports the creation of the CSR required to apply for a certificate and the management of online electronic signatures.

Was ist NLToken?

NLToken ist eine Chrome-Erweiterung, die von NETLOCK Ltd. entwickelt wurde, und ihr Hauptmerkmal ist "NLToken supports the creation of the CSR required to apply for a certificate and the management of online electronic signatures.".

Erweiterungsscreenshots

screenshot

NLToken-Erweiterungs-CRX-Datei herunterladen

Laden Sie NLToken-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

                        The NETLOCK NLToken plug-in allows you creating an electronic signature with a smart card in your web browser or generating a key to request a software based certificate.
Key generation: the key pair is created on your computer and the private key will be stored encrypted by the Windows operating system.
By installing the plug-in, your browser will be capable to perform electronic signature operations and to generate certificate requests as well.
For using the NLToken plug-in, managing smart cards and generating certificate signing requests an application is also required, whose installer can be downloaded from our website:
https://netlock.hu/                    

Grundlegende Informationen zur Erweiterung

Name NLToken NLToken
ID doogaehilcikliedmollaopciboeogcl
Offizielle URL https://chromewebstore.google.com/detail/nltoken/doogaehilcikliedmollaopciboeogcl
Beschreibung NLToken supports the creation of the CSR required to apply for a certificate and the management of online electronic signatures.
Dateigröße 30.79 KB
Installationsanzahl 10,000
Aktuelle Version 2.0.2
Letztes Update 2022-06-29
Veröffentlichungsdatum 2021-02-12
Bewertung 1.00/5 Insgesamt 3 Bewertungen
Entwickler NETLOCK Ltd.
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://netlock.hu/
Hilfeseite URL https://netlock.hu/
URL der Datenschutzrichtlinien-Seite https://netlock.hu/aktualis-szabalyzatok
Unterstützte Sprachen en,en-GB,en-US,hu
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.2",
    "minimum_chrome_version": "40.0",
    "manifest_version": 2,
    "description": "__MSG_appDesc__",
    "default_locale": "hu",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.overdrive.com\/*",
                "*:\/\/*\/*.svg",
                "https:\/\/ebs.instructure.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "file:\/\/\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "keygen_content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "nativeMessaging"
    ]
}