Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Vad är Gong Call Summaries?
Gong Call Summaries är en Chrome-tillägg utvecklad av kennethkutyn, och dess huvudfunktion är "A chrome extension that generates a summary of Gong.io call transcripts".
Tilläggsskärmbilder
Ladda ner Gong Call Summaries-förlängningens CRX-fil
Ladda ner Gong Call Summaries-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
| Officiell webbadress | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
| Beskrivning | A chrome extension that generates a summary of Gong.io call transcripts |
| Filstorlek | 392 KB |
| Antal Installationer | 157 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-04-12 |
| Publiceringsdatum | 2023-04-12 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | kennethkutyn |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://kennethkutyn.github.io/scai-extension/index.html |
| Stödda Språk | 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"
]
}
]
} | |