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”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
    ]
}