Recruiter Tool
LinkedIn, Indeed, CareerBuilder and Monster data capturing extension
What is Recruiter Tool?
Recruiter Tool is a Chrome extension developed by Seternity Solutions, and its main feature is "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension".
Extension Screenshots
Download Recruiter Tool Extension CRX File
Download Recruiter Tool 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
A tool that saves lot of time for Recruiters and Sourcers. The tool captures data from databases like Monster, CareerBuilder, Indeed, Linkedin Recruiter. The fields include Full Name, First Name, Location, Designation, URL, Email, Phone Number and resume download with just one click. The tool saves tremendous amount of time consumed in capturing details of candidates, downloading resume , and changing resume file name in Spreadsheet by getting all this done in just one click.
Extension Basic Information
Name | Recruiter Tool |
ID | noaijpjakfhifdfidojijnemgphipeei |
Official URL | https://chrome.google.com/webstore/detail/recruiter-tool/noaijpjakfhifdfidojijnemgphipeei |
Description | LinkedIn, Indeed, CareerBuilder and Monster data capturing extension |
File Size | 30.24 KB |
Installation Count | 36 |
Current Version | 0.5 |
Last Updated | 2022-04-10 |
Publish Date | 2020-03-18 |
Developer | Seternity Solutions |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recruiter Tool", "description": "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension", "version": "0.5", "icons": { "128": "Recruiter_Tool128.png" }, "permissions": [ "tabs", "webRequest", "webRequestBlocking", "background", "downloads", "https:\/\/www.linkedin.com\/*", "https:\/\/docs.google.com\/*", "https:\/\/resumes.indeed.com\/*", "https:\/\/employer.careerbuilder.com\/*", "https:\/\/hiring.monster.com\/*" ], "browser_action": { "default_icon": "Recruiter_Tool38.png", "default_title": "Click here to open menu", "default_popup": "popup.html" }, "background": { "scripts": [ "shared.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*", "https:\/\/resumes.indeed.com\/*", "https:\/\/employer.careerbuilder.com\/*", "https:\/\/hiring.monster.com\/*" ], "js": [ "shared.js", "content.js" ] }, { "matches": [ "https:\/\/www.linkedin.com\/*", "https:\/\/resumes.indeed.com\/*", "https:\/\/employer.careerbuilder.com\/*", "https:\/\/hiring.monster.com\/*" ], "js": [ "start.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "xhr.js" ] } |