Wise Agent Add Contacts
Add contacts to Wise Agent from Gmail
Wise Agent Add Contacts là gì?
Wise Agent Add Contacts là một tiện ích mở rộng Chrome được phát triển bởi https://www.wiseagent.com, và tính năng chính của nó là "Add contacts to Wise Agent from Gmail".
Ả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 Wise Agent Add Contacts
Tải xuống các tệp mở rộng Wise Agent Add Contacts 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
Wise Agent CRM members will be able to add contacts from their Gmail account directly to their Wise Agent account. The extension will automatically extract the name and email address of the email sender and any recipients. Additionally, users can add extra details such as phone numbers, titles, company names, sources, and categories to the contacts.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wise Agent Add Contacts |
ID | elpiekaehikfeikdafacpofkjenfipke |
URL Chính Thức | https://chromewebstore.google.com/detail/wise-agent-add-contacts/elpiekaehikfeikdafacpofkjenfipke |
Mô tả | Add contacts to Wise Agent from Gmail |
Kích Thước Tệp | 827 KB |
Số Lần Cài Đặt | 1,821 |
Phiên Bản Hiện Tại | 4.0 |
Cập Nhật Lần Cuối | 2024-02-01 |
Ngày Phát Hành | 2020-04-27 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://www.wiseagent.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.wiseagent.com |
URL Trang Trợ Giúp | https://www.wiseagent.com/contact-us.asp |
URL Trang Chính Sách Bảo Mật | https://www.thewiseagent.com/privacy.asp |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wise Agent Add Contacts", "short_name": "wiseagentaddcontacts", "version": "4.0", "author": "Wise Agent LLC", "description": "Add contacts to Wise Agent from Gmail", "icons": { "16": "WA_Logo-16x16.png", "48": "WA_Logo-48x48.png", "128": "WA_Logo-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "dist\/extensionInjector.js" ], "run_at": "document_start", "css": [ "css\/extension.css" ] } ], "permissions": [ "storage", "https:\/\/mail.google.com\/*" ], "background": { "service_worker": "dist\/background.js" }, "externally_connectable": { "ids": [ "elpiekaehikfeikdafacpofkjenfipke" ], "matches": [ "https:\/\/mail.google.com\/*" ], "accepts_tls_channel_id": false }, "web_accessible_resources": [ { "resources": [ "dist\/gmailJsLoader.js", "dist\/extension.js", "dist\/gmailJsLoader.js.map", "dist\/extension.js.map", "dist\/angular.js", "dist\/angular.js.map", "dist\/ui.bootstrap.js", "dist\/ui.bootstrap.js.map", "dist\/select.js", "dist\/select.js.map", "dist\/extension.css", "\/MenuLogo-blue.svg" ], "matches": [ "*:\/\/mail.google.com\/*" ] } ], "host_permissions": [ "https:\/\/*\/*" ] } |