re:Scan

A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.

re:Scan란 무엇입니까?

re:Scan은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

re:Scan 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        re:Scan is a resume scanner that takes in a resume and parses through it for keywords. It then parses through a web page's job description with the click of a button and provides a general summary that includes a similarity score, keyword comparisons, and suggestions. The parsed resume persists through multiple clicks, so there is no need to upload a new resume every time one wants to compare their resume to a job description. While the extension is geared towards helping job-seekers, it is also useful for recruiters who are curious about an applicant's resume's fit.                    

확장 프로그램 기본 정보

이름 re:Scan re:Scan
ID fjiopcojjjafjnfgipombdbpjimignpl
공식 URL https://chromewebstore.google.com/detail/rescan/fjiopcojjjafjnfgipombdbpjimignpl
설명 A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.
파일 크기 6.63 MB
설치 횟수 718
현재 버전 1.2
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 4.00/5 총 1 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "re:Scan",
    "description": "A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.",
    "version": "1.2",
    "browser_action": {
        "default_icon": ".\/lib\/icon.png",
        "default_popup": ".\/lib\/rescan.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "bundle.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/lib\/jquery-3.1.1.min.js",
                ".\/lib\/pullDescription.js"
            ]
        }
    ]
}