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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}