Unbias Me

Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information.

什么是Unbias Me?

Unbias Me是由Fureigh (@fureigh)开发的Chrome扩展程序,该扩展的主要功能是“Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information.”。

扩展截图

screenshot

下载Unbias Me扩展crx文件

下载Unbias Me扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Trying to improve your hiring practices and increase diversity at your workplace? Reduce room for unconscious bias when reviewing job candidates' online materials.

This extension hides a candidate's profile picture and name when you're looking at their GitHub or LinkedIn page or their Twitter feed.

**Why?**
More than two decades of research have indicated that despite our best efforts, unconscious bias is inescapable. But removing room for biases can help. (Auditioning musicians behind a privacy screen, for instance, is famously credited with increasing the percentage of women musicians in orchestras from 5 percent to 25 percent since the 1970s. Source: http://gender.stanford.edu/news/2013/leveling-playing-field)

More info:
https://github.com/fureigh/unbias-me

Contact the developer:
https://twitter.com/fureigh | linkedin.com/in/fureigh | [email protected]                    

扩展基本信息

名称 Unbias Me Unbias Me
ID bghhadboobnoikppffdojcebigmcgmam
官方URL https://chromewebstore.google.com/detail/unbias-me/bghhadboobnoikppffdojcebigmcgmam
简介 Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information.
文件大小 52.71 KB
安装次数 139
当前版本 0.0.0.2
更新时间 2016-03-27
上架时间 2016-03-26
评分 5.00/5 共2次评分
开发者 Fureigh (@fureigh)
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unbias Me",
    "version": "0.0.0.2",
    "description": "Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Unbias Me"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "github.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "linkedin.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "twitter.js"
            ]
        }
    ]
}