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 |
公式URL | 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 |
Eメール | [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" ] } |