Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Cos'è Secureframe Knowledge Base?

Secureframe Knowledge Base è un'estensione di Chrome sviluppata da Secureframe, e la sua funzione principale è "Get answers fast from your growing knowledge base with Secureframe!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Secureframe Knowledge Base

Scarica i file di estensione Secureframe Knowledge Base in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
URL Ufficiale https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Descrizione Get answers fast from your growing knowledge base with Secureframe!
Dimensione del File 12.86 KB
Conteggio Installazioni 192
Versione Corrente 1.0.0
Ultimo Aggiornamento 2024-01-26
Data di Pubblicazione 2022-12-20
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Secureframe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://secureframe.com/products/questionnaires
URL della Pagina di Aiuto https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL della Pagina della Politica sulla Privacy https://secureframe.com/privacy
Lingue Supportate 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"
    }
}