Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
什么是Add Google Directory Contacts?
Add Google Directory Contacts是由Matan H开发的Chrome扩展程序,该扩展的主要功能是“Selects all the directory contacts and adds them to Google Contacts”。
扩展截图
下载Add Google Directory Contacts扩展crx文件
下载Add Google Directory Contacts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Selects all the Google directory contacts and adds them to your Google Contacts account
扩展基本信息
名称 | Add Google Directory Contacts |
ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
官方URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
简介 | Selects all the directory contacts and adds them to Google Contacts |
文件大小 | 56.94 KB |
安装次数 | 18 |
当前版本 | 1.0.2 |
更新时间 | 2023-07-11 |
上架时间 | 2022-08-15 |
开发者 | Matan H |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/mharsat/add-google-directory-contacts |
帮助页面URL | https://github.com/mharsat/add-google-directory-contacts |
隐私政策页面URL | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
支持的语言 | 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" } } |