Strongbox AutoFill

Strongbox Browser AutoFill Extension

Что такое Strongbox AutoFill?

Strongbox AutoFill - это расширение Chrome, разработанное https://strongboxsafe.com, и его основная функция - "Strongbox Browser AutoFill Extension".

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

screenshot
screenshot
screenshot

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

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

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

                        Strongbox AutoFill allows you to access your Strongbox password databases from within your browser so that you can seamlessly fill in usernames, passwords and authentication codes.                    

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

Название Strongbox AutoFill Strongbox AutoFill
ID mnilpkfepdibngheginihjpknnopchbn
Официальный URL https://chromewebstore.google.com/detail/strongbox-autofill/mnilpkfepdibngheginihjpknnopchbn
Описание Strongbox Browser AutoFill Extension
Размер файла 4.02 MB
Количество установок 4,888
Текущая Версия 1.1.1
Последнее Обновление 2023-12-06
Дата публикации 2022-09-21
Рейтинг 3.75/5 Всего 20 оценок
Разработчик https://strongboxsafe.com
Электронная почта support@strongboxsafe.com
Тип оплаты free
Официальный сайт расширения https://strongboxsafe.com
URL страницы помощи https://strongboxsafe.com/support
URL страницы политики конфиденциальности https://strongboxsafe.com/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strongbox AutoFill",
    "version": "1.1.1",
    "icons": {
        "128": "assets\/icons\/app-icon-blue-128.png"
    },
    "content_security_policy": {
        "extension_page": "script-src 'self' ; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/icons\/app-icon-blue-19.png",
                "assets\/icons\/app-icon-grey-38.png",
                "assets\/icons\/app-icon-grey-19.png",
                "assets\/icons\/app-icon-blue-38.png",
                "assets\/icons\/app-icon-circle.png",
                "_favicon\/*",
                "iframe.html"
            ],
            "matches": [
                ""
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "commands": {
        "autofill-first": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "AutoFill"
        },
        "open-inline-menu": {
            "suggested_key": {
                "default": "Ctrl+Shift+O"
            },
            "description": "Show Inline Menu"
        }
    },
    "action": {
        "default_title": "Strongbox",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "assets\/icons\/app-icon-blue-19.png",
            "38": "assets\/icons\/app-icon-blue-38.png"
        }
    },
    "description": "Strongbox Browser AutoFill Extension",
    "short_name": "Strongbox",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "webNavigation",
        "storage",
        "favicon"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "author": "Phoebe Code Limited",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.bundle.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}