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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان صفحة سياسة الخصوصية | 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"
]
}
]
} | |