Mortgage iQ Contact Scraper
Exctract the details of contacts on supported websites and create Contact leads in Mortgage iQ
Mortgage iQ Contact Scraper란 무엇입니까?
Mortgage iQ Contact Scraper은(는) mortgage iQ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exctract the details of contacts on supported websites and create Contact leads in Mortgage iQ"입니다.
확장 프로그램 스크린샷
Mortgage iQ Contact Scraper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A Chrome browser plugin for exporting contacts from LinkedIn to Mortgage iQ. A new contact and lead notification is generated on export. NEW IN THIS VERSION Resolved issue with the Current Employer not loading into the import form
확장 프로그램 기본 정보
이름 | Mortgage iQ Contact Scraper |
ID | dhlfjhjhdcmbimjpblilphcimfkbicap |
공식 URL | https://chromewebstore.google.com/detail/mortgage-iq-contact-scrap/dhlfjhjhdcmbimjpblilphcimfkbicap |
설명 | Exctract the details of contacts on supported websites and create Contact leads in Mortgage iQ |
파일 크기 | 48.2 KB |
설치 횟수 | 25 |
현재 버전 | 2.1.6 |
최근 업데이트 | 2019-06-06 |
출시 날짜 | 2019-06-05 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | mortgage iQ |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http:www.mortgageiqcrm.com |
개인정보 보호 정책 페이지 URL | http://www.mortgageiqcrm.com/privacy-policy.aspx |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mortgage iQ Contact Scraper", "description": "Exctract the details of contacts on supported websites and create Contact leads in Mortgage iQ ", "version": "2.1.6", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "jquery.min.js", "content.js" ] } ], "background": { "scripts": [ "jquery.min.js", "event.js" ], "persistent": false }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "chrome_style": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |