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文件

下載Antibias擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}