Contacts+ Connector
Easily add contacts to your address book with a single click
什么是Contacts+ Connector?
Contacts+ Connector是由https://contactsplus.com开发的Chrome扩展程序,该扩展的主要功能是“Easily add contacts to your address book with a single click”。
扩展截图
下载Contacts+ Connector扩展crx文件
下载Contacts+ Connector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Quickly add any web contact information to your Contacts+ address book. Contacts+ allows you to add context to your relationships with its smart, cloud-based address book. You can access your address book from anywhere, on any device, all while syncing your contacts with the services you already use such as Google, iCloud, and Office 365. Contacts+ Connector gives you the ability to quickly add contacts into your address book right from your browser toolbar. Visit a social profile page and look for the Contacts+ toolbar icon. Click the icon and at the click of the button the contact will be added to your address book. It's the quickest way to add contacts to your Contacts+ address book! =================== User Responsibility Contacts+ Connector is a proprietary algorithm that retrieves publicly available contact data from webpages. In using the Contacts+ Connector extension to manage contact data, users are responsible for keeping in adherence to the User Agreement of LinkedIn or any other third party platform. Using Contacts+ Connector in a way that breaches the User Agreement of LinkedIn or other third party platforms may result in a locked account or revoked license.
扩展基本信息
名称 | Contacts+ Connector |
ID | cafaanchfgheihlpacmmpaebfmjiimfo |
官方URL | https://chromewebstore.google.com/detail/contacts+-connector/cafaanchfgheihlpacmmpaebfmjiimfo |
简介 | Easily add contacts to your address book with a single click |
文件大小 | 493 KB |
安装次数 | 3,218 |
当前版本 | 1.3.3 |
更新时间 | 2024-01-29 |
上架时间 | 2022-01-24 |
评分 | 4.00/5 共2次评分 |
开发者 | https://contactsplus.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.contactsplus.com |
帮助页面URL | https://support.contactsplus.com |
隐私政策页面URL | https://www.contactsplus.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Contacts+ Connector", "version": "1.3.3", "author": "Contacts+", "description": "Easily add contacts to your address book with a single click", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "triforce.js", "helper.js" ] } ], "permissions": [ "tabs", "background", "storage" ], "host_permissions": [ "https:\/\/*.contactsplus.com\/*" ], "homepage_url": "https:\/\/www.contactsplus.com\/integrations\/connector\/", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "service_worker": "loader.js" }, "action": { "default_icon": [], "default_title": "Add Contact to Contacts+", "default_popup": "popover.html" } } |