Antibias
Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
O que é Antibias?
Antibias é uma extensão do Chrome desenvolvida por Beyond, e sua principal característica é "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Antibias
Baixe arquivos de extensão Antibias no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | gfeilphhbcfaekkffklahpndiidiloln |
URL Oficial | https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln |
Descrição | Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants. |
Tamanho do Arquivo | 754 KB |
Contagem de Instalações | 224 |
Versão Atual | 1.7.5 |
Última Atualização | 2020-04-29 |
Data de Publicação | 2020-04-29 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | Beyond |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://bynd.com |
URL da Página de Política de Privacidade | https://bynd.com/privacy-policy |
Idiomas Suportados | 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 } |