Gong Call Summaries

A chrome extension that generates a summary of Gong.io call transcripts

Gong Call Summariesคืออะไร?

Gong Call Summaries เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kennethkutyn และคุณลักษณะหลักของมันคือ "A chrome extension that generates a summary of Gong.io call transcripts"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gong Call Summaries

ดาวน์โหลดไฟล์ส่วนขยาย Gong Call Summaries ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A Chrome extension that generates a summary of Gong.io call transcripts. When reviewing a sales meeting transcript, it is time consuming for sales people to note all the important action items and next steps. This extension automatically uses AI to summarize the meeting in a few bullet points and let the sales person copy that summary to a note taking tool of their choice.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gong Call Summaries Gong Call Summaries
ID jkakomephnfmkcmcgpnpgkcndlkecimm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm
คำอธิบาย A chrome extension that generates a summary of Gong.io call transcripts
ขนาดไฟล์ 392 KB
จำนวนการติดตั้ง 157
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-04-12
วันที่เผยแพร่ 2023-04-12
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา kennethkutyn
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://kennethkutyn.github.io/scai-extension/index.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gong Call Summaries",
    "version": "1.0",
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "description": "A chrome extension that generates a summary of Gong.io call transcripts",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/amplitude.app.gong.io\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.gong.io\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}