Antibias

Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.

Antibias란 무엇입니까?

Antibias은(는) Beyond에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This allows first impressions to form based on credentials and achievements–not superficial traits.

Antibias easily toggles on and off by clicking the extension icon–but you may not need to turn it off completely (read on!)

Hovering over a hidden name or photo on a user’s profile will reveal it. We recommend waiting to view these pieces of information until you’ve explored the candidate’s profile and decided whether or not to advance them in the hiring process.

Antibias was created by the team at Beyond (www.bynd.com), a design company that accelerates transformative customer experiences.                    

확장 프로그램 기본 정보

이름 Antibias Antibias
ID gfeilphhbcfaekkffklahpndiidiloln
공식 URL https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln
설명 Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
파일 크기 754 KB
설치 횟수 224
현재 버전 1.7.5
최근 업데이트 2020-04-29
출시 날짜 2020-04-29
평점 4.00/5 총 2 개의 평점
개발자 Beyond
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bynd.com
개인정보 보호 정책 페이지 URL https://bynd.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Antibias",
    "version": "1.7.5",
    "description": "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.",
    "minimum_chrome_version": "63",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*.linkedin.com\/*",
        "https:\/\/*.linkedin.com\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        },
        "matches": [
            "https:\/\/*.linkedin.com\/*"
        ]
    },
    "content_scripts": [
        {
            "persistent": false,
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "web_accessible_resources": [
                "css\/*",
                "js\/*",
                "images\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "manifest_version": 2
}