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文件

下載Gender Blinder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        # 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
官方網址 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"
    }
}