Gender Blinder

This extension attempts to suppress implicit gender identity in the pages you visit.

Gender Blinder là gì?

Gender Blinder là một tiện ích mở rộng Chrome được phát triển bởi genderblinder, và tính năng chính của nó là "This extension attempts to suppress implicit gender identity in the pages you visit.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        # Gender Blinder

An open source browser extension to remove implicit gender from English language web pages.

## Known limitations

* Due to the ambiguous nature of language, removing gender from natural English cannot easily be done with 100% accuracy.
* Making gender specific words non-gender-specific is a lossy operation; information about the genders of characters being described is lost. This can make text more ambiguous. 
* There is not a one-to-one mapping between English pronouns of different genders, so sometimes there are two possible substitutions i.e. "his" -> "her" OR "his" -> "hers".
* Not all gender specific words are covered.
* Sometimes words unrelated to gender get changed by accident. For example they may have a similar/identical spelling to a gender-specific word. 

Source Code: https://github.com/peterwestmacott/genderblinder                    

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

Tên Gender Blinder Gender Blinder
ID fchfnnmlenjoppfonlacepldllfaglmg
URL Chính Thức https://chromewebstore.google.com/detail/gender-blinder/fchfnnmlenjoppfonlacepldllfaglmg
Mô tả This extension attempts to suppress implicit gender identity in the pages you visit.
Kích Thước Tệp 15.04 KB
Số Lần Cài Đặt 162
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2017-11-20
Ngày Phát Hành 2017-11-20
Đánh Giá 2.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển genderblinder
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/peterwestmacott/genderblinder
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gender Blinder",
    "version": "1.4",
    "description": "This extension attempts to suppress implicit gender identity in the pages you visit.",
    "homepage_url": "http:\/\/path\/to\/homepage",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "blind.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "128": "icon128.png"
        },
        "default_title": "Gender Blinder",
        "default_popup": "popup.html"
    }
}