Wingman

This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.

Co to jest Wingman?

Wingman to rozszerzenie Chrome opracowane przez https://strings.ai, a jego główną funkcją jest „This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Wingman

Pobierz pliki rozszerzeń Wingman 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

                        Wingman for SDRs helps with real-time information on sales calls.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wingman Wingman
ID bepjjhbjcogelfnbkoichikhmkhcpdjc
Oficjalny URL https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc
Opis This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Rozmiar pliku 128 KB
Liczba instalacji 202
Aktualna Wersja 1.1.35
Ostatnia Aktualizacja 2021-06-24
Data Publikacji 2020-03-06
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper https://strings.ai
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.trywingman.com/
Adres URL Strony Pomocy https://www.trywingman.com/privacy-policy
Adres URL Strony Polityki Prywatności https://trywingman.com/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wingman",
    "description": "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.",
    "version": "1.1.35",
    "icons": {
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Wingman"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "tabCapture",
        "activeTab",
        "cookies",
        "http:\/\/localhost\/",
        "https:\/\/app.hubspot.com\/",
        "https:\/\/app.strings.ai\/",
        "https:\/\/api.trywingman.com\/",
        "https:\/\/app.trywingman.com\/",
        "https:\/\/dialpad.com\/",
        "https:\/\/dev.trywingman.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "content_scripts\/localhost.js",
                "content_scripts\/popup.js"
            ]
        },
        {
            "matches": [
                "https:\/\/app.hubspot.com\/*",
                "https:\/\/*.freshsales.io\/*",
                "https:\/\/*.freshcaller.com\/*",
                "https:\/\/dialpad.com\/app*",
                "https:\/\/*.followupboss.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content_scripts\/dialer_integration.js",
                "content_scripts\/popup.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/*",
        "img\/*"
    ],
    "commands": {
        "enable": {
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "Command+Shift+6"
            },
            "global": true,
            "description": "Enable wingman"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+7",
                "mac": "Command+Shift+7"
            }
        }
    }
}