Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Co je Wingman?
Wingman je rozšíření Chrome vyvinuté https://strings.ai, a jeho hlavní funkcí je „This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Wingman
Stáhněte si soubory rozšíření Wingman ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Wingman for SDRs helps with real-time information on sales calls.
Základní Informace o Rozšíření
Název | Wingman |
ID | bepjjhbjcogelfnbkoichikhmkhcpdjc |
Oficiální URL | https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc |
Popis | This extension captures the audio on from your dialer tabs and stream it back to enable Wingman. |
Velikost souboru | 128 KB |
Počet instalací | 202 |
Aktuální Verze | 1.1.35 |
Poslední Aktualizace | 2021-06-24 |
Datum Vydání | 2020-03-06 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | https://strings.ai |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.trywingman.com/ |
URL Stránky Nápovědy | https://www.trywingman.com/privacy-policy |
URL Stránky Zásad Ochrany Soukromí | https://trywingman.com/privacy-policy |
Podporované Jazyky | 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" } } } } |