Secureframe Knowledge Base

Get answers fast from your growing knowledge base with Secureframe!

Secureframe Knowledge Baseคืออะไร?

Secureframe Knowledge Base เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Secureframe และคุณลักษณะหลักของมันคือ "Get answers fast from your growing knowledge base with Secureframe!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Secureframe Knowledge Base

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}