Antibias
Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
Cos'è Antibias?
Antibias è un'estensione di Chrome sviluppata da Beyond, e la sua funzione principale è "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Antibias
Scarica i file di estensione Antibias in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gfeilphhbcfaekkffklahpndiidiloln |
URL Ufficiale | https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln |
Descrizione | Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants. |
Dimensione del File | 754 KB |
Conteggio Installazioni | 224 |
Versione Corrente | 1.7.5 |
Ultimo Aggiornamento | 2020-04-29 |
Data di Pubblicazione | 2020-04-29 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | Beyond |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bynd.com |
URL della Pagina della Politica sulla Privacy | https://bynd.com/privacy-policy |
Lingue Supportate | 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 } |