Blind Audition

Anonymizes candidates on recruiting sites

What is Blind Audition?

Blind Audition is a Chrome extension developed by Jason Crawford, and its main feature is "Anonymizes candidates on recruiting sites".

Extension Screenshots

screenshot

Download Blind Audition Extension CRX File

Download Blind Audition extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Blind Audition anonymizes candidates on recruiting-related sites such as AngelList and LinkedIn, by hiding their names and profile pictures. Using it helps you focus on their qualifications instead of irrelevant details.

Experimental new feature: Also anonymizes gender in candidate feedback in Greenhouse scorecards.                    

Extension Basic Information

Name Blind Audition Blind Audition
ID gjpejfdnljndlaljlaabjhncaefaejka
Official URL https://chromewebstore.google.com/detail/blind-audition/gjpejfdnljndlaljlaabjhncaefaejka
Description Anonymizes candidates on recruiting sites
File Size 27.09 KB
Installation Count 14
Current Version 0.5
Last Updated 2018-11-24
Publish Date 2018-11-23
Rating 5.00/5 Total 1 Ratings
Developer Jason Crawford
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blind Audition",
    "version": "0.5",
    "description": "Anonymizes candidates on recruiting sites",
    "author": "Jason Crawford ",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/alist.co\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/alist.js"
            ]
        },
        {
            "matches": [
                "*:\/\/angel.co\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/angellist.js"
            ]
        },
        {
            "matches": [
                "*:\/\/careers.stackoverflow.com\/employer\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/stackoverflow.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/linkedin.js"
            ]
        },
        {
            "matches": [
                "*:\/\/company.underdog.io\/batch\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/underdog.js"
            ]
        },
        {
            "matches": [
                "*:\/\/app.greenhouse.io\/people\/*"
            ],
            "js": [
                "blinder.js",
                "sites\/greenhouse.js"
            ]
        }
    ]
}