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文件

下載re:Scan擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}