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.」です。
拡張機能のスクリーンショット
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                     拡張機能の基本情報
| 名前 |  | 
| 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 | 
| Eメール | [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"
    }
} | |