Samdock LinkedIn Grabber
Samdock Grabber is a Chrome extension that allows you to grab contact information from LinkedIn and save it to your Samdock CRM.
什么是Samdock LinkedIn Grabber?
Samdock LinkedIn Grabber是由http://samdock.com开发的Chrome扩展程序,该扩展的主要功能是“Samdock Grabber is a Chrome extension that allows you to grab contact information from LinkedIn and save it to your Samdock CRM.”。
扩展截图
下载Samdock LinkedIn Grabber扩展crx文件
下载Samdock LinkedIn Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With the Samdock LinkedIn Grabber it is a one click action for collecting profile or company data. Now it is so much easier to import and update contact data directly from LinkedIn.
扩展基本信息
名称 | Samdock LinkedIn Grabber |
ID | hjdoekfcaedmdikdmafefofejfephjgm |
官方URL | https://chrome.google.com/webstore/detail/samdock-linkedin-grabber/hjdoekfcaedmdikdmafefofejfephjgm |
简介 | Samdock Grabber is a Chrome extension that allows you to grab contact information from LinkedIn and save it to your Samdock CRM. |
文件大小 | 158 KB |
安装次数 | 247 |
当前版本 | 0.0.5 |
更新时间 | 2023-05-26 |
上架时间 | 2022-12-06 |
评分 | 5.00/5 共5次评分 |
开发者 | http://samdock.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://samdock.com |
帮助页面URL | https://samdock.help |
隐私政策页面URL | https://samdock.com/impressum/datenschutz |
支持的语言 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "0.0.5", "action": { "default_title": "__MSG_appName__", "default_popup": "popup\/popup.html", "default_icon": "images\/samdock-logo-blue.png" }, "web_accessible_resources": [ { "resources": [ "images\/samdock-logo-blue.png", "images\/samdock-logo-red.png", "images\/samdock-logo-gray.png", "images\/angle-right.png" ], "matches": [ "https:\/\/*.linkedin.com\/*" ], "use_dynamic_url": true } ], "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*" ], "css": [ "scripts\/content-styles.css", "scripts\/select2.min.css" ], "js": [ "scripts\/jquery.min.js", "scripts\/select2.min.js", "scripts\/samdockLogin.js", "scripts\/samdockPerson.js", "scripts\/samdockOrganizations.js", "scripts\/linkedin.js" ], "permissions": [ "storage" ] } ], "permissions": [ "storage" ], "icons": { "16": "images\/samdock-logo-blue-16.png", "32": "images\/samdock-logo-blue-32.png", "48": "images\/samdock-logo-blue-64.png", "128": "images\/samdock-logo-blue.png" }, "background": { "service_worker": "background.js" } } |