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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |