re:Scan

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

Apa itu re:Scan?

re:Scan adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi re:Scan

Unduh file ekstensi re:Scan 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

                        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.                    

Informasi Dasar Ekstensi

Nama re:Scan re:Scan
ID fjiopcojjjafjnfgipombdbpjimignpl
URL Resmi https://chromewebstore.google.com/detail/rescan/fjiopcojjjafjnfgipombdbpjimignpl
Deskripsi A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description.
Ukuran File 6.63 MB
Jumlah Instalasi 718
Versi Saat Ini 1.2
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 4.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}