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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | 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" ] } ] } |