Gong Call Summaries

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

什么是Gong Call Summaries?

Gong Call Summaries是由kennethkutyn开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that generates a summary of Gong.io call transcripts”。

扩展截图

screenshot

下载Gong Call Summaries扩展crx文件

下载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"
            ]
        }
    ]
}