LinkedINonymous
Reduce implicit bias in hiring by anonymizing LinkedIn profiles
什麼是LinkedINonymous?
LinkedINonymous是由http://terminal.space開發的Chrome擴展程式,該擴展的主要功能是“Reduce implicit bias in hiring by anonymizing LinkedIn profiles”。
擴展截圖
下載LinkedINonymous擴展crx文件
下載LinkedINonymous擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | LinkedINonymous |
ID | mfhbpajmedjkeilakapcdmlkdiohpgan |
官方網址 | https://chrome.google.com/webstore/detail/linkedinonymous/mfhbpajmedjkeilakapcdmlkdiohpgan |
簡介 | Reduce implicit bias in hiring by anonymizing LinkedIn profiles |
檔案大小 | 33.41 KB |
安裝次數 | 34 |
目前版本 | 1.0.1 |
更新時間 | 2019-05-06 |
上架時間 | 2019-05-06 |
開發者 | http://terminal.space |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://terminal.space |
支援的語言 | 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" ] } |