NLToken

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

Что такое NLToken?

NLToken - это расширение Chrome, разработанное NETLOCK Ltd., и его основная функция - "NLToken supports the creation of the CSR required to apply for a certificate and the management of online electronic signatures.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения NLToken

Скачайте файлы расширений NLToken в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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/                    

Основная информация о расширении

Название NLToken NLToken
ID doogaehilcikliedmollaopciboeogcl
Официальный URL https://chromewebstore.google.com/detail/nltoken/doogaehilcikliedmollaopciboeogcl
Описание NLToken supports the creation of the CSR required to apply for a certificate and the management of online electronic signatures.
Размер файла 30.79 KB
Количество установок 10,000
Текущая Версия 2.0.2
Последнее Обновление 2022-06-29
Дата публикации 2021-02-12
Рейтинг 1.00/5 Всего 3 оценок
Разработчик NETLOCK Ltd.
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://netlock.hu/
URL страницы помощи https://netlock.hu/
URL страницы политики конфиденциальности https://netlock.hu/aktualis-szabalyzatok
Поддерживаемые языки 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"
    ]
}