Gong Call Summaries

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

Cos'è Gong Call Summaries?

Gong Call Summaries è un'estensione di Chrome sviluppata da kennethkutyn, e la sua funzione principale è "A chrome extension that generates a summary of Gong.io call transcripts".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gong Call Summaries

Scarica i file di estensione Gong Call Summaries in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Gong Call Summaries Gong Call Summaries
ID jkakomephnfmkcmcgpnpgkcndlkecimm
URL Ufficiale https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm
Descrizione A chrome extension that generates a summary of Gong.io call transcripts
Dimensione del File 392 KB
Conteggio Installazioni 157
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-12
Data di Pubblicazione 2023-04-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kennethkutyn
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://kennethkutyn.github.io/scai-extension/index.html
Lingue Supportate 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"
            ]
        }
    ]
}