Gender Blinder
This extension attempts to suppress implicit gender identity in the pages you visit.
Qu'est-ce que Gender Blinder ?
Gender Blinder est une extension Chrome développée par genderblinder, et sa fonction principale est "This extension attempts to suppress implicit gender identity in the pages you visit.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gender Blinder
Téléchargez les fichiers d'extension Gender Blinder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# 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
Informations de Base sur l'Extension
Nom | Gender Blinder |
ID | fchfnnmlenjoppfonlacepldllfaglmg |
URL Officiel | https://chromewebstore.google.com/detail/gender-blinder/fchfnnmlenjoppfonlacepldllfaglmg |
Description | This extension attempts to suppress implicit gender identity in the pages you visit. |
Taille du Fichier | 15.04 KB |
Nombre d'Installations | 162 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2017-11-20 |
Date de Publication | 2017-11-20 |
Évaluation | 2.88/5 Total 8 Évaluations |
Développeur | genderblinder |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/peterwestmacott/genderblinder |
Langues Prises en Charge | 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" } } |