Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Co je Secureframe Knowledge Base?

Secureframe Knowledge Base je rozšíření Chrome vyvinuté Secureframe, a jeho hlavní funkcí je „Get answers fast from your growing knowledge base with Secureframe!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Secureframe Knowledge Base

Stáhněte si soubory rozšíření Secureframe Knowledge Base ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
Oficiální URL https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Popis Get answers fast from your growing knowledge base with Secureframe!
Velikost souboru 12.86 KB
Počet instalací 192
Aktuální Verze 1.0.0
Poslední Aktualizace 2024-01-26
Datum Vydání 2022-12-20
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Secureframe
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://secureframe.com/products/questionnaires
URL Stránky Nápovědy https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL Stránky Zásad Ochrany Soukromí https://secureframe.com/privacy
Podporované Jazyky 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"
    }
}