Recruiter Tool
LinkedIn, Indeed, CareerBuilder and Monster data capturing extension
Co je Recruiter Tool?
Recruiter Tool je rozšíření Chrome vyvinuté Seternity Solutions, a jeho hlavní funkcí je „LinkedIn, Indeed, CareerBuilder and Monster data capturing extension“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Recruiter Tool
Stáhněte si soubory rozšíření Recruiter Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Recruiter Tool |
ID | noaijpjakfhifdfidojijnemgphipeei |
Oficiální URL | https://chrome.google.com/webstore/detail/recruiter-tool/noaijpjakfhifdfidojijnemgphipeei |
Popis | LinkedIn, Indeed, CareerBuilder and Monster data capturing extension |
Velikost souboru | 30.24 KB |
Počet instalací | 36 |
Aktuální Verze | 0.5 |
Poslední Aktualizace | 2022-04-10 |
Datum Vydání | 2020-03-18 |
Vývojář | Seternity Solutions |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |