Wingman

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

什么是Wingman?

Wingman是由https://strings.ai开发的Chrome扩展程序,该扩展的主要功能是“This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.”。

扩展截图

screenshot

下载Wingman扩展crx文件

下载Wingman扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Wingman Wingman
ID bepjjhbjcogelfnbkoichikhmkhcpdjc
官方URL https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc
简介 This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
文件大小 128 KB
安装次数 202
当前版本 1.1.35
更新时间 2021-06-24
上架时间 2020-03-06
评分 5.00/5 共5次评分
开发者 https://strings.ai
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.trywingman.com/
帮助页面URL https://www.trywingman.com/privacy-policy
隐私政策页面URL https://trywingman.com/privacy-policy
支持的语言 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"
            }
        }
    }
}