Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Что такое Secureframe Knowledge Base?

Secureframe Knowledge Base - это расширение Chrome, разработанное Secureframe, и его основная функция - "Get answers fast from your growing knowledge base with Secureframe!".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension opens a pop-up window that allows you to immediately search and see details about your company in the Secureframe knowledge base. Use this as an instant resource for facts when filling out questionnaires or for other compliance queries. By the team at Secureframe.

Features include:
- Type keywords, phrases, or whole questions in to the search field to immediately discover related content in the knowledge base.
- The ‘select-to-search’ feature automatically searches any highlighted text on your active tab.                    

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

Название Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
Официальный URL https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Описание Get answers fast from your growing knowledge base with Secureframe!
Размер файла 12.86 KB
Количество установок 192
Текущая Версия 1.0.0
Последнее Обновление 2024-01-26
Дата публикации 2022-12-20
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Secureframe
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://secureframe.com/products/questionnaires
URL страницы помощи https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL страницы политики конфиденциальности https://secureframe.com/privacy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Secureframe Knowledge Base",
    "version": "1.0.0",
    "description": "Get answers fast from your growing knowledge base with Secureframe!",
    "manifest_version": 3,
    "author": "Secureframe",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "helpers.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "worker_wrapper.js"
    },
    "action": [],
    "permissions": [
        "contextMenus",
        "system.display",
        "activeTab",
        "storage"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/app.secureframe.com\/*"
        ]
    },
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}