Antibias

Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.

Antibias là gì?

Antibias là một tiện ích mở rộng Chrome được phát triển bởi Beyond, và tính năng chính của nó là "Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.".

Ả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 Antibias

Tải xuống các tệp mở rộng Antibias 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

                        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.                    

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

Tên Antibias Antibias
ID gfeilphhbcfaekkffklahpndiidiloln
URL Chính Thức https://chrome.google.com/webstore/detail/antibias/gfeilphhbcfaekkffklahpndiidiloln
Mô tả Antibias hides user names and profile pictures on LinkedIn to reduce bias when screening job applicants.
Kích Thước Tệp 754 KB
Số Lần Cài Đặt 224
Phiên Bản Hiện Tại 1.7.5
Cập Nhật Lần Cuối 2020-04-29
Ngày Phát Hành 2020-04-29
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Beyond
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bynd.com
URL Trang Chính Sách Bảo Mật https://bynd.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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
}