Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

O que é Secureframe Knowledge Base?

Secureframe Knowledge Base é uma extensão do Chrome desenvolvida por Secureframe, e sua principal característica é "Get answers fast from your growing knowledge base with Secureframe!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Secureframe Knowledge Base

Baixe arquivos de extensão Secureframe Knowledge Base no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
URL Oficial https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Descrição Get answers fast from your growing knowledge base with Secureframe!
Tamanho do Arquivo 12.86 KB
Contagem de Instalações 192
Versão Atual 1.0.0
Última Atualização 2024-01-26
Data de Publicação 2022-12-20
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Secureframe
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://secureframe.com/products/questionnaires
URL da Página de Ajuda https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL da Página de Política de Privacidade https://secureframe.com/privacy
Idiomas Suportados 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"
    }
}