Gong Call Summaries
A chrome extension that generates a summary of Gong.io call transcripts
Co to jest Gong Call Summaries?
Gong Call Summaries to rozszerzenie Chrome opracowane przez kennethkutyn, a jego główną funkcją jest „A chrome extension that generates a summary of Gong.io call transcripts”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gong Call Summaries
Pobierz pliki rozszerzeń Gong Call Summaries w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | jkakomephnfmkcmcgpnpgkcndlkecimm | 
| Oficjalny URL | https://chromewebstore.google.com/detail/gong-call-summaries/jkakomephnfmkcmcgpnpgkcndlkecimm | 
| Opis | A chrome extension that generates a summary of Gong.io call transcripts | 
| Rozmiar pliku | 392 KB | 
| Liczba instalacji | 157 | 
| Aktualna Wersja | 1.0 | 
| Ostatnia Aktualizacja | 2023-04-12 | 
| Data Publikacji | 2023-04-12 | 
| Ocena | 5.00/5 Łącznie 1 Oceny | 
| Deweloper | kennethkutyn | 
| [email protected] | |
| Typ Płatności | free | 
| Adres URL Strony Polityki Prywatności | https://kennethkutyn.github.io/scai-extension/index.html | 
| Obsługiwane Języki | 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"
            ]
        }
    ]
}  |  |