Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Vad är Secureframe Knowledge Base?

Secureframe Knowledge Base är en Chrome-tillägg utvecklad av Secureframe, och dess huvudfunktion är "Get answers fast from your growing knowledge base with Secureframe!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Secureframe Knowledge Base-förlängningens CRX-fil

Ladda ner Secureframe Knowledge Base-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
Officiell webbadress https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Beskrivning Get answers fast from your growing knowledge base with Secureframe!
Filstorlek 12.86 KB
Antal Installationer 192
Aktuell Version 1.0.0
Senast Uppdaterad 2024-01-26
Publiceringsdatum 2022-12-20
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Secureframe
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://secureframe.com/products/questionnaires
Hjälpsida URL https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL till Sekretesspolicy Sidan https://secureframe.com/privacy
Stödda Språk 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"
    }
}