Gong Call Summaries

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

Was ist Gong Call Summaries?

Gong Call Summaries ist eine Chrome-Erweiterung, die von kennethkutyn entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that generates a summary of Gong.io call transcripts".

Erweiterungsscreenshots

screenshot

Gong Call Summaries-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gong Call Summaries-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Gong Call Summaries Gong Call Summaries
ID jkakomephnfmkcmcgpnpgkcndlkecimm
Offizielle URL https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm
Beschreibung A chrome extension that generates a summary of Gong.io call transcripts
Dateigröße 392 KB
Installationsanzahl 157
Aktuelle Version 1.0
Letztes Update 2023-04-12
Veröffentlichungsdatum 2023-04-12
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kennethkutyn
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://kennethkutyn.github.io/scai-extension/index.html
Unterstützte Sprachen 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"
            ]
        }
    ]
}