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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } } } |