Wingman

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

Was ist Wingman?

Wingman ist eine Chrome-Erweiterung, die von https://strings.ai entwickelt wurde, und ihr Hauptmerkmal ist "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".

Erweiterungsscreenshots

screenshot

Wingman-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wingman-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

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

Grundlegende Informationen zur Erweiterung

Name Wingman Wingman
ID bepjjhbjcogelfnbkoichikhmkhcpdjc
Offizielle URL https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc
Beschreibung This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Dateigröße 128 KB
Installationsanzahl 202
Aktuelle Version 1.1.35
Letztes Update 2021-06-24
Veröffentlichungsdatum 2020-03-06
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://strings.ai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.trywingman.com/
Hilfeseite URL https://www.trywingman.com/privacy-policy
URL der Datenschutzrichtlinien-Seite https://trywingman.com/privacy-policy
Unterstützte Sprachen 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"
            }
        }
    }
}