Recruiter Tool
LinkedIn, Indeed, CareerBuilder and Monster data capturing extension
¿Qué es Recruiter Tool?
Recruiter Tool es una extensión de Chrome desarrollada por Seternity Solutions, y su función principal es "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Recruiter Tool
Descarga archivos de extensión Recruiter Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Recruiter Tool |
ID | noaijpjakfhifdfidojijnemgphipeei |
URL Oficial | https://chrome.google.com/webstore/detail/recruiter-tool/noaijpjakfhifdfidojijnemgphipeei |
Descripción | LinkedIn, Indeed, CareerBuilder and Monster data capturing extension |
Tamaño del Archivo | 30.24 KB |
Cantidad de Instalaciones | 36 |
Versión Actual | 0.5 |
Última Actualización | 2022-04-10 |
Fecha de Publicación | 2020-03-18 |
Desarrollador | Seternity Solutions |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |