Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Co je Gong Call Summaries?
Gong Call Summaries je rozšíření Chrome vyvinuté kennethkutyn, a jeho hlavní funkcí je „A chrome extension that generates a summary of Gong.io call transcripts“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Gong Call Summaries
Stáhněte si soubory rozšíření Gong Call Summaries ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Gong Call Summaries |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
Oficiální URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
Popis | A chrome extension that generates a summary of Gong.io call transcripts |
Velikost souboru | 392 KB |
Počet instalací | 157 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-04-12 |
Datum Vydání | 2023-04-12 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | kennethkutyn |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://kennethkutyn.github.io/scai-extension/index.html |
Podporované Jazyky | 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" ] } ] } |