Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Wingman क्या है?
Wingman https://strings.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wingman एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Wingman for SDRs helps with real-time information on sales calls.
एक्सटेंशन की मूल जानकारी
नाम | Wingman |
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" } } } } |