LinkedINonymous

Reduce implicit bias in hiring by anonymizing LinkedIn profiles

LinkedINonymous क्या है?

LinkedINonymous http://terminal.space द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reduce implicit bias in hiring by anonymizing LinkedIn profiles"।

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

screenshot

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

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

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

                        Source better candidates with LinkedInonymous by reducing your implicit bias.
Let's face it: We make snap decisions on LinkedIn profiles. Unfortunately, that can lead to implicit bias, causing you to miss otherwise qualified candidates.

LinkedInonymous helps overcome implicit bias by hiding or anonymizing parts of a LinkedIn profile or search.

Currently, LinkedInonymous will:
- Remove profile pictures
- Change names to one of the star constellations in order to anonymize them.
- Toggle the anonymizing on or off by tapping the extension button

Why constellations? I wanted something that sounded enough like real names without triggering bias. Using scientific tree names was the other idea. Do you have a suggestion? I'd love to hear it.

Version history:
1.0.1 - Bug fixes causing linkedIN to hang
1.0.0 - Initial version                    

एक्सटेंशन की मूल जानकारी

नाम LinkedINonymous LinkedINonymous
ID mfhbpajmedjkeilakapcdmlkdiohpgan
आधिकारिक URL https://chrome.google.com/webstore/detail/linkedinonymous/mfhbpajmedjkeilakapcdmlkdiohpgan
विवरण Reduce implicit bias in hiring by anonymizing LinkedIn profiles
फ़ाइल का आकार 33.41 KB
स्थापना संख्या 34
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-05-06
प्रकाशन तिथि 2019-05-06
डेवलपर http://terminal.space
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://terminal.space
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Reduce implicit bias in hiring by anonymizing LinkedIn profiles",
    "version": "1.0.1",
    "name": "LinkedINonymous",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": {
        "name": "LinkedINonymous"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/linkedin.com\/*",
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "logo-16.png",
        "32": "logo-32.png",
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "permissions": [
        "storage"
    ]
}