LinkedINonymous

Reduce implicit bias in hiring by anonymizing LinkedIn profiles

Qu'est-ce que LinkedINonymous ?

LinkedINonymous est une extension Chrome développée par http://terminal.space, et sa fonction principale est "Reduce implicit bias in hiring by anonymizing LinkedIn profiles".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension LinkedINonymous

Téléchargez les fichiers d'extension LinkedINonymous au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom LinkedINonymous LinkedINonymous
ID mfhbpajmedjkeilakapcdmlkdiohpgan
URL Officiel https://chrome.google.com/webstore/detail/linkedinonymous/mfhbpajmedjkeilakapcdmlkdiohpgan
Description Reduce implicit bias in hiring by anonymizing LinkedIn profiles
Taille du Fichier 33.41 KB
Nombre d'Installations 34
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-05-06
Date de Publication 2019-05-06
Développeur http://terminal.space
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://terminal.space
Langues Prises en Charge 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"
    ]
}