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”。
擴展截圖
下載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 |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
官方網址 | 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" ] } ] } |