Antibias

Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.

Qu'est-ce que Antibias ?

Antibias est une extension Chrome développée par Beyond, et sa fonction principale est "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Antibias 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

                        This allows first impressions to form based on credentials and achievements–not superficial traits.

Antibias easily toggles on and off by clicking the extension icon–but you may not need to turn it off completely (read on!)

Hovering over a hidden name or photo on a user’s profile will reveal it. We recommend waiting to view these pieces of information until you’ve explored the candidate’s profile and decided whether or not to advance them in the hiring process.

Antibias was created by the team at Beyond (www.bynd.com), a design company that accelerates transformative customer experiences.                    

Informations de Base sur l'Extension

Nom Antibias Antibias
ID gfeilphhbcfaekkffklahpndiidiloln
URL Officiel https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln
Description Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
Taille du Fichier 754 KB
Nombre d'Installations 224
Version Actuelle 1.7.5
Dernière Mise à Jour 2020-04-29
Date de Publication 2020-04-29
Évaluation 4.00/5 Total 2 Évaluations
Développeur Beyond
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://bynd.com
URL de la Page de Politique de Confidentialité https://bynd.com/privacy-policy
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Antibias",
    "version": "1.7.5",
    "description": "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.",
    "minimum_chrome_version": "63",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*.linkedin.com\/*",
        "https:\/\/*.linkedin.com\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        },
        "matches": [
            "https:\/\/*.linkedin.com\/*"
        ]
    },
    "content_scripts": [
        {
            "persistent": false,
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "web_accessible_resources": [
                "css\/*",
                "js\/*",
                "images\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "manifest_version": 2
}