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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that provides a detailed report on how well-tailored an applicant's resume is to a particular job description."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में re:Scan एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}