Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Что такое Wingman?
Wingman - это расширение Chrome, разработанное https://strings.ai, и его основная функция - "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".
Снимки экрана расширения
Скачать файл CRX расширения Wingman
Скачайте файлы расширений Wingman в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Wingman for SDRs helps with real-time information on sales calls. Основная информация о расширении
| Название | |
| 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"
}
}
}
} | |