Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Gong Call Summaries क्या है?
Gong Call Summaries kennethkutyn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that generates a summary of Gong.io call transcripts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gong Call Summaries एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | Gong Call Summaries |
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" ] } ] } |