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ファイルをダウンロード
Mortgage iQ Contact Scraper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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:\/\/*\/*" ] } |