Wingman
This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Wingman là gì?
Wingman là một tiện ích mở rộng Chrome được phát triển bởi https://strings.ai, và tính năng chính của nó là "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Wingman
Tải xuống các tệp mở rộng Wingman dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Wingman for SDRs helps with real-time information on sales calls.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wingman |
ID | bepjjhbjcogelfnbkoichikhmkhcpdjc |
URL Chính Thức | https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc |
Mô tả | This extension captures the audio on from your dialer tabs and stream it back to enable Wingman. |
Kích Thước Tệp | 128 KB |
Số Lần Cài Đặt | 202 |
Phiên Bản Hiện Tại | 1.1.35 |
Cập Nhật Lần Cuối | 2021-06-24 |
Ngày Phát Hành | 2020-03-06 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://strings.ai |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.trywingman.com/ |
URL Trang Trợ Giúp | https://www.trywingman.com/privacy-policy |
URL Trang Chính Sách Bảo Mật | https://trywingman.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |