Wise Agent Add Contacts
Add contacts to Wise Agent from Gmail
什麼是Wise Agent Add Contacts?
Wise Agent Add Contacts是由https://www.wiseagent.com開發的Chrome擴展程式,該擴展的主要功能是“Add contacts to Wise Agent from Gmail”。
擴展截圖
下載Wise Agent Add Contacts擴展crx文件
下載Wise Agent Add Contacts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Wise Agent Add Contacts |
ID | elpiekaehikfeikdafacpofkjenfipke |
官方網址 | https://chromewebstore.google.com/detail/wise-agent-add-contacts/elpiekaehikfeikdafacpofkjenfipke |
簡介 | Add contacts to Wise Agent from Gmail |
檔案大小 | 827 KB |
安裝次數 | 1,821 |
目前版本 | 4.0 |
更新時間 | 2024-02-01 |
上架時間 | 2020-04-27 |
評分 | 5.00/5 共 5 次評分 |
開發者 | https://www.wiseagent.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.wiseagent.com |
說明頁面URL | https://www.wiseagent.com/contact-us.asp |
隱私政策頁面URL | https://www.thewiseagent.com/privacy.asp |
支援的語言 | 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:\/\/*\/*" ] } |