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.”。
擴展截圖
下載Wingman擴展crx文件
下載Wingman擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Wingman for SDRs helps with real-time information on sales calls. 擴展基本資訊
| 名稱 | |
| ID | bepjjhbjcogelfnbkoichikhmkhcpdjc |
| 官方網址 | 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"
}
}
}
} | |