Blind Audition

Anonymizes candidates on recruiting sites

Blind Audition란 무엇입니까?

Blind Audition은(는) Jason Crawford에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Anonymizes candidates on recruiting sites"입니다.

확장 프로그램 스크린샷

screenshot

Blind Audition 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Blind Audition Blind Audition
ID gjpejfdnljndlaljlaabjhncaefaejka
공식 URL https://chromewebstore.google.com/detail/blind-audition/gjpejfdnljndlaljlaabjhncaefaejka
설명 Anonymizes candidates on recruiting sites
파일 크기 27.09 KB
설치 횟수 14
현재 버전 0.5
최근 업데이트 2018-11-24
출시 날짜 2018-11-23
평점 5.00/5 총 1 개의 평점
개발자 Jason Crawford
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}