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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | https://www.trywingman.com/privacy-policy |
عنوان صفحة سياسة الخصوصية | 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" } } } } |