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.」です。
拡張機能のスクリーンショット
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]                     拡張機能の基本情報
| 名前 |  | 
| 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) | 
| Eメール | [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"
            ]
        }
    ]
} | |