Gong Call Summaries

A chrome extension that generates a summary of Gong.io call transcripts

Qu'est-ce que Gong Call Summaries ?

Gong Call Summaries est une extension Chrome développée par kennethkutyn, et sa fonction principale est "A chrome extension that generates a summary of Gong.io call transcripts".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gong Call Summaries

Téléchargez les fichiers d'extension Gong Call Summaries au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Gong Call Summaries Gong Call Summaries
ID jkakomephnfmkcmcgpnpgkcndlkecimm
URL Officiel https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm
Description A chrome extension that generates a summary of Gong.io call transcripts
Taille du Fichier 392 KB
Nombre d'Installations 157
Version Actuelle 1.0
Dernière Mise à Jour 2023-04-12
Date de Publication 2023-04-12
Évaluation 5.00/5 Total 1 Évaluations
Développeur kennethkutyn
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://kennethkutyn.github.io/scai-extension/index.html
Langues Prises en Charge 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"
            ]
        }
    ]
}