Recruiter Tool
LinkedIn, Indeed, CareerBuilder and Monster data capturing extension
Apa itu Recruiter Tool?
Recruiter Tool adalah ekstensi Chrome yang dikembangkan oleh Seternity Solutions, dan fitur utamanya adalah "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Recruiter Tool
Unduh file ekstensi Recruiter Tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Recruiter Tool |
ID | noaijpjakfhifdfidojijnemgphipeei |
URL Resmi | https://chrome.google.com/webstore/detail/recruiter-tool/noaijpjakfhifdfidojijnemgphipeei |
Deskripsi | LinkedIn, Indeed, CareerBuilder and Monster data capturing extension |
Ukuran File | 30.24 KB |
Jumlah Instalasi | 36 |
Versi Saat Ini | 0.5 |
Terakhir Diperbarui | 2022-04-10 |
Tanggal Publikasi | 2020-03-18 |
Pengembang | Seternity Solutions |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |