Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Apa itu Gong Call Summaries?
Gong Call Summaries adalah ekstensi Chrome yang dikembangkan oleh kennethkutyn, dan fitur utamanya adalah "A chrome extension that generates a summary of Gong.io call transcripts".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gong Call Summaries
Unduh file ekstensi Gong Call Summaries dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Gong Call Summaries |
ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
URL Resmi | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
Deskripsi | A chrome extension that generates a summary of Gong.io call transcripts |
Ukuran File | 392 KB |
Jumlah Instalasi | 157 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-04-12 |
Tanggal Publikasi | 2023-04-12 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | kennethkutyn |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://kennethkutyn.github.io/scai-extension/index.html |
Bahasa yang Didukung | 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" ] } ] } |