Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

¿Qué es Secureframe Knowledge Base?

Secureframe Knowledge Base es una extensión de Chrome desarrollada por Secureframe, y su función principal es "Get answers fast from your growing knowledge base with Secureframe!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Secureframe Knowledge Base

Descarga archivos de extensión Secureframe Knowledge Base en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
URL Oficial https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Descripción Get answers fast from your growing knowledge base with Secureframe!
Tamaño del Archivo 12.86 KB
Cantidad de Instalaciones 192
Versión Actual 1.0.0
Última Actualización 2024-01-26
Fecha de Publicación 2022-12-20
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Secureframe
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://secureframe.com/products/questionnaires
URL de la Página de Ayuda https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL de la Página de Política de Privacidad https://secureframe.com/privacy
Idiomas Soportados 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"
    }
}