Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
What is Add Google Directory Contacts?
Add Google Directory Contacts is a Chrome extension developed by Matan H, and its main feature is "Selects all the directory contacts and adds them to Google Contacts".
Extension Screenshots
Download Add Google Directory Contacts Extension CRX File
Download Add Google Directory Contacts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Selects all the Google directory contacts and adds them to your Google Contacts account
Extension Basic Information
Name | Add Google Directory Contacts |
ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
Official URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
Description | Selects all the directory contacts and adds them to Google Contacts |
File Size | 56.94 KB |
Installation Count | 18 |
Current Version | 1.0.2 |
Last Updated | 2023-07-11 |
Publish Date | 2022-08-15 |
Developer | Matan H |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mharsat/add-google-directory-contacts |
Help Page URL | https://github.com/mharsat/add-google-directory-contacts |
Privacy Policy Page URL | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add Google Directory Contacts", "description": "Selects all the directory contacts and adds them to Google Contacts", "version": "1.0.2", "manifest_version": 3, "background": { "service_worker": "hot-reload.js" }, "content_scripts": [ { "matches": [ "https:\/\/contacts.google.com\/*directory*" ], "js": [ "dist\/contentScript.js" ], "css": [ "dist\/contentScript.css" ], "run_at": "document_idle" } ], "icons": { "16": "assets\/contacts_plus_logo_16.png", "32": "assets\/contacts_plus_logo_32.png", "48": "assets\/contacts_plus_logo_48.png", "128": "assets\/contacts_plus_logo_128.png" } } |