Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

What is Secureframe Knowledge Base?

Secureframe Knowledge Base is a Chrome extension developed by Secureframe, and its main feature is "Get answers fast from your growing knowledge base with Secureframe!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Secureframe Knowledge Base Extension CRX File

Download Secureframe Knowledge Base extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
Official URL https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Description Get answers fast from your growing knowledge base with Secureframe!
File Size 12.86 KB
Installation Count 192
Current Version 1.0.0
Last Updated 2024-01-26
Publish Date 2022-12-20
Rating 5.00/5 Total 4 Ratings
Developer Secureframe
Email [email protected]
Payment Type free
Extension Website https://secureframe.com/products/questionnaires
Help Page URL https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
Privacy Policy Page URL https://secureframe.com/privacy
Supported Languages 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"
    }
}