Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Hvad er Gong Call Summaries?
Gong Call Summaries er en Chrome-udvidelse udviklet af kennethkutyn, og dens hovedfunktion er "A chrome extension that generates a summary of Gong.io call transcripts".
Udvidelsesskærmbilleder
Download Gong Call Summaries-udvidelses-CRX-fil
Download Gong Call Summaries-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Gong Call Summaries |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
Officiel URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
Beskrivelse | A chrome extension that generates a summary of Gong.io call transcripts |
Filstørrelse | 392 KB |
Antal Installationer | 157 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-04-12 |
Udgivelsesdato | 2023-04-12 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | kennethkutyn |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://kennethkutyn.github.io/scai-extension/index.html |
Understøttede Sprog | 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" ] } ] } |