Gong Call Summaries

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

Gong Call Summaries là gì?

Gong Call Summaries là một tiện ích mở rộng Chrome được phát triển bởi kennethkutyn, và tính năng chính của nó là "A chrome extension that generates a summary of Gong.io call transcripts".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gong Call Summaries

Tải xuống các tệp mở rộng Gong Call Summaries 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

                        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.                    

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

Tên Gong Call Summaries Gong Call Summaries
ID jkakomephnfmkcmcgpnpgkcndlkecimm
URL Chính Thức https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm
Mô tả A chrome extension that generates a summary of Gong.io call transcripts
Kích Thước Tệp 392 KB
Số Lần Cài Đặt 157
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-04-12
Ngày Phát Hành 2023-04-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển kennethkutyn
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://kennethkutyn.github.io/scai-extension/index.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}