Gender Blinder

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

Gender Blinder क्या है?

Gender Blinder genderblinder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension attempts to suppress implicit gender identity in the pages you visit."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gender Blinder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}