Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Secureframe Knowledge Baseとは何ですか?

Secureframe Knowledge BaseはSecureframeによって開発されたChromeの拡張機能で、その主な機能は「Get answers fast from your growing knowledge base with Secureframe!」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Secureframe Knowledge Base拡張機能のCRXファイルをダウンロード

Secureframe Knowledge Base拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
公式URL https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
説明 Get answers fast from your growing knowledge base with Secureframe!
ファイルサイズ 12.86 KB
インストール数 192
現在のバージョン 1.0.0
最終更新日 2024-01-26
公開日 2022-12-20
評価 5.00/5 合計 4 レビュー
開発者 Secureframe
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://secureframe.com/products/questionnaires
ヘルプページのURL https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
プライバシーポリシーページのURL https://secureframe.com/privacy
対応言語 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"
    }
}