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 là gì?

re:Scan là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng re:Scan

Tải xuống các tệp mở rộng re:Scan dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên re:Scan re:Scan
ID fjiopcojjjafjnfgipombdbpjimignpl
URL Chính Thức https://chromewebstore.google.com/detail/rescan/fjiopcojjjafjnfgipombdbpjimignpl
Mô tả A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.
Kích Thước Tệp 6.63 MB
Số Lần Cài Đặt 718
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}