Unbias Me

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

Unbias Meคืออะไร?

Unbias Me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fureigh (@fureigh) และคุณลักษณะหลักของมันคือ "Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unbias Me

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}