Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Secureframe Knowledge Base là gì?

Secureframe Knowledge Base là một tiện ích mở rộng Chrome được phát triển bởi Secureframe, và tính năng chính của nó là "Get answers fast from your growing knowledge base with Secureframe!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Secureframe Knowledge Base

Tải xuống các tệp mở rộng Secureframe Knowledge Base dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Secureframe Knowledge Base Secureframe Knowledge Base
ID embmladabggifkcdocnacijpeigjkfpg
URL Chính Thức https://chromewebstore.google.com/detail/secureframe-knowledge-bas/embmladabggifkcdocnacijpeigjkfpg
Mô tả Get answers fast from your growing knowledge base with Secureframe!
Kích Thước Tệp 12.86 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2024-01-26
Ngày Phát Hành 2022-12-20
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Secureframe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://secureframe.com/products/questionnaires
URL Trang Trợ Giúp https://secureframe.zendesk.com/hc/en-us/articles/11974158974355
URL Trang Chính Sách Bảo Mật https://secureframe.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}