Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Что такое Gong Call Summaries?
Gong Call Summaries - это расширение Chrome, разработанное kennethkutyn, и его основная функция - "A chrome extension that generates a summary of Gong.io call transcripts".
Снимки экрана расширения
Скачать файл CRX расширения Gong Call Summaries
Скачайте файлы расширений Gong Call Summaries в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | jkakomephnfmkcmcgpnpgkcndlkecimm |
| Официальный URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm |
| Описание | A chrome extension that generates a summary of Gong.io call transcripts |
| Размер файла | 392 KB |
| Количество установок | 157 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2023-04-12 |
| Дата публикации | 2023-04-12 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | kennethkutyn |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://kennethkutyn.github.io/scai-extension/index.html |
| Поддерживаемые языки | 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"
]
}
]
} | |