Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Wat is Gong Call Summaries?
Gong Call Summaries is een Chrome-extensie ontwikkeld door kennethkutyn, en de belangrijkste functie is "A chrome extension that generates a summary of Gong.io call transcripts".
Extensie Screenshots
Download het CRX-bestand van de extensie Gong Call Summaries
Download Gong Call Summaries-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Gong Call Summaries |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
Officiële URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
Beschrijving | A chrome extension that generates a summary of Gong.io call transcripts |
Bestandsgrootte | 392 KB |
Aantal Installaties | 157 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2023-04-12 |
Publicatiedatum | 2023-04-12 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | kennethkutyn |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://kennethkutyn.github.io/scai-extension/index.html |
Ondersteunde Talen | 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" ] } ] } |