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 |
Eメール | [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" } } |