Gender Blinder

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

Gender Blinder란 무엇입니까?

Gender Blinder은(는) genderblinder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension attempts to suppress implicit gender identity in the pages you visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Gender Blinder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # 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                    

확장 프로그램 기본 정보

이름 Gender Blinder Gender Blinder
ID fchfnnmlenjoppfonlacepldllfaglmg
공식 URL https://chromewebstore.google.com/detail/gender-blinder/fchfnnmlenjoppfonlacepldllfaglmg
설명 This extension attempts to suppress implicit gender identity in the pages you visit.
파일 크기 15.04 KB
설치 횟수 162
현재 버전 1.4
최근 업데이트 2017-11-20
출시 날짜 2017-11-20
평점 2.88/5 총 8 개의 평점
개발자 genderblinder
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/peterwestmacott/genderblinder
지원되는 언어 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"
    }
}