Recruiter Tool

LinkedIn, Indeed, CareerBuilder and Monster data capturing extension

Recruiter Toolคืออะไร?

Recruiter Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Seternity Solutions และคุณลักษณะหลักของมันคือ "LinkedIn, Indeed, CareerBuilder and Monster data capturing extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Recruiter Tool

ดาวน์โหลดไฟล์ส่วนขยาย Recruiter Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Recruiter Tool Recruiter Tool
ID noaijpjakfhifdfidojijnemgphipeei
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/recruiter-tool/noaijpjakfhifdfidojijnemgphipeei
คำอธิบาย LinkedIn, Indeed, CareerBuilder and Monster data capturing extension
ขนาดไฟล์ 30.24 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2022-04-10
วันที่เผยแพร่ 2020-03-18
ผู้พัฒนา Seternity Solutions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}