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 |
公式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 |
Eメール | [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" ] } ] } |