Axiad Portal Extension
Interface for authenticators such a Smart Cards and YubiKeys
Что такое Axiad Portal Extension?
Axiad Portal Extension - это расширение Chrome, разработанное Axiad IDS, и его основная функция - "Interface for authenticators such a Smart Cards and YubiKeys".
Снимки экрана расширения
Скачать файл CRX расширения Axiad Portal Extension
Скачайте файлы расширений Axiad Portal Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Axiad Portal Extension is a bridge between Axiad Unified Portal and the OS Smart Card interface to allow users to issue and manage their security devices, smart cards, and tokens. Основная информация о расширении
| Название | |
| ID | pbabkmdefcmabmlmnkmnlcijhcgmmdnc |
| Официальный URL | https://chromewebstore.google.com/detail/axiad-portal-extension/pbabkmdefcmabmlmnkmnlcijhcgmmdnc |
| Описание | Interface for authenticators such a Smart Cards and YubiKeys |
| Размер файла | 45.6 KB |
| Количество установок | 300,000 |
| Текущая Версия | 1.5.0 |
| Последнее Обновление | 2022-05-31 |
| Дата публикации | 2020-06-04 |
| Рейтинг | 3.67/5 Всего 3 оценок |
| Разработчик | Axiad IDS |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.axiad.com/ |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Axiad Portal Extension",
"version": "1.5.0",
"author": "Axiad",
"description": "Interface for authenticators such a Smart Cards and YubiKeys",
"icons": {
"48": "img\/48.png",
"128": "img\/128.png"
},
"permissions": [
"nativeMessaging",
"storage"
],
"page_action": {
"default_icon": {
"40": "img\/off.png"
},
"default_title": "Axiad Portal Extension"
},
"background": {
"scripts": [
"api.js",
"bg.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"fg.js"
],
"run_at": "document_end"
}
],
"minimum_chrome_version": "55",
"options_page": "opt\/page.htm",
"storage": {
"managed_schema": "storage.json"
}
} | |