Unbias Me

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

Unbias Me क्या है?

Unbias Me Fureigh (@fureigh) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays GitHub, LinkedIn and Twitter profiles with minimal attribution information."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Unbias Me एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}