LinkedINonymous

Reduce implicit bias in hiring by anonymizing LinkedIn profiles

LinkedINonymous là gì?

LinkedINonymous là một tiện ích mở rộng Chrome được phát triển bởi http://terminal.space, và tính năng chính của nó là "Reduce implicit bias in hiring by anonymizing LinkedIn profiles".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LinkedINonymous

Tải xuống các tệp mở rộng LinkedINonymous dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LinkedINonymous LinkedINonymous
ID mfhbpajmedjkeilakapcdmlkdiohpgan
URL Chính Thức https://chrome.google.com/webstore/detail/linkedinonymous/mfhbpajmedjkeilakapcdmlkdiohpgan
Mô tả Reduce implicit bias in hiring by anonymizing LinkedIn profiles
Kích Thước Tệp 33.41 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-05-06
Ngày Phát Hành 2019-05-06
Nhà Phát Triển http://terminal.space
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://terminal.space
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}