SB Hacks Contact Finder
Find contacs with ease
What is SB Hacks Contact Finder?
SB Hacks Contact Finder is a Chrome extension developed by http://chan4est.com, and its main feature is "Find contacs with ease".
Extension Screenshots
Download SB Hacks Contact Finder Extension CRX File
Download SB Hacks Contact Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This simple dropdown extension will allow you to easily pop in your potential contact's information in the hopes that you can find a valid email.
Extension Basic Information
Name | |
ID | feofcnpnghfccbpgiaejheefpiohmdga |
Official URL | https://chrome.google.com/webstore/detail/sb-hacks-contact-finder/feofcnpnghfccbpgiaejheefpiohmdga |
Description | Find contacs with ease |
File Size | 943 KB |
Installation Count | 13 |
Current Version | 1.0.1 |
Last Updated | 2018-05-04 |
Publish Date | 2018-05-04 |
Developer | http://chan4est.com |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SB Hacks Contact Finder", "version": "1.0.1", "description": "Find contacs with ease", "options_page": "about.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "main.js" ] } ], "page_action": { "default_icon": "images\/icon-128.png", "default_popup": "sponsors.html" }, "permissions": [ "declarativeContent", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "manifest_version": 2 } |