LinkedINonymous

Reduce implicit bias in hiring by anonymizing LinkedIn profiles

Co to jest LinkedINonymous?

LinkedINonymous to rozszerzenie Chrome opracowane przez http://terminal.space, a jego główną funkcją jest „Reduce implicit bias in hiring by anonymizing LinkedIn profiles”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia LinkedINonymous

Pobierz pliki rozszerzeń LinkedINonymous w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa LinkedINonymous LinkedINonymous
ID mfhbpajmedjkeilakapcdmlkdiohpgan
Oficjalny URL https://chrome.google.com/webstore/detail/linkedinonymous/mfhbpajmedjkeilakapcdmlkdiohpgan
Opis Reduce implicit bias in hiring by anonymizing LinkedIn profiles
Rozmiar pliku 33.41 KB
Liczba instalacji 34
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-05-06
Data Publikacji 2019-05-06
Deweloper http://terminal.space
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://terminal.space
Obsługiwane Języki 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"
    ]
}