Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Cos'è Wingman?
Wingman è un'estensione di Chrome sviluppata da https://strings.ai, e la sua funzione principale è "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wingman
Scarica i file di estensione Wingman in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Wingman for SDRs helps with real-time information on sales calls. Informazioni di Base sull'Estensione
| Nome | |
| ID | bepjjhbjcogelfnbkoichikhmkhcpdjc |
| URL Ufficiale | https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc |
| Descrizione | This extension captures the audio on from your dialer tabs and stream it back to enable Wingman. |
| Dimensione del File | 128 KB |
| Conteggio Installazioni | 202 |
| Versione Corrente | 1.1.35 |
| Ultimo Aggiornamento | 2021-06-24 |
| Data di Pubblicazione | 2020-03-06 |
| Valutazione | 5.00/5 Totale 5 Valutazioni |
| Sviluppatore | https://strings.ai |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.trywingman.com/ |
| URL della Pagina di Aiuto | https://www.trywingman.com/privacy-policy |
| URL della Pagina della Politica sulla Privacy | https://trywingman.com/privacy-policy |
| Lingue Supportate | 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"
}
}
}
} | |