Wingman

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

Hvad er Wingman?

Wingman er en Chrome-udvidelse udviklet af https://strings.ai, og dens hovedfunktion er "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".

Udvidelsesskærmbilleder

screenshot

Download Wingman-udvidelses-CRX-fil

Download Wingman-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Wingman Wingman
ID bepjjhbjcogelfnbkoichikhmkhcpdjc
Officiel URL https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc
Beskrivelse This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Filstørrelse 128 KB
Antal Installationer 202
Nuværende Version 1.1.35
Senest Opdateret 2021-06-24
Udgivelsesdato 2020-03-06
Bedømmelse 5.00/5 Samlet 5 Bedømmelser
Udvikler https://strings.ai
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.trywingman.com/
Hjælpeside-URL https://www.trywingman.com/privacy-policy
URL til Fortrolighedspolitik Side https://trywingman.com/privacy-policy
Understøttede Sprog 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"
            }
        }
    }
}