Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
What is Gong Call Summaries?
Gong Call Summaries is a Chrome extension developed by kennethkutyn, and its main feature is "A chrome extension that generates a summary of Gong.io call transcripts".
Extension Screenshots
Download Gong Call Summaries Extension CRX File
Download Gong Call Summaries extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Gong Call Summaries |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
Official URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
Description | A chrome extension that generates a summary of Gong.io call transcripts |
File Size | 392 KB |
Installation Count | 157 |
Current Version | 1.0 |
Last Updated | 2023-04-12 |
Publish Date | 2023-04-12 |
Rating | 5.00/5 Total 1 Ratings |
Developer | kennethkutyn |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://kennethkutyn.github.io/scai-extension/index.html |
Supported Languages | 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" ] } ] } |