Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Qu'est-ce que Wingman ?
Wingman est une extension Chrome développée par https://strings.ai, et sa fonction principale est "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Wingman
Téléchargez les fichiers d'extension Wingman au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Wingman for SDRs helps with real-time information on sales calls.
Informations de Base sur l'Extension
Nom | Wingman |
ID | bepjjhbjcogelfnbkoichikhmkhcpdjc |
URL Officiel | https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc |
Description | This extension captures the audio on from your dialer tabs and stream it back to enable Wingman. |
Taille du Fichier | 128 KB |
Nombre d'Installations | 202 |
Version Actuelle | 1.1.35 |
Dernière Mise à Jour | 2021-06-24 |
Date de Publication | 2020-03-06 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | https://strings.ai |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.trywingman.com/ |
URL de la Page d'Aide | https://www.trywingman.com/privacy-policy |
URL de la Page de Politique de Confidentialité | https://trywingman.com/privacy-policy |
Langues Prises en Charge | 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" } } } } |