Gender Blinder
This extension attempts to suppress implicit gender identity in the pages you visit.
Wat is Gender Blinder?
Gender Blinder is een Chrome-extensie ontwikkeld door genderblinder, en de belangrijkste functie is "This extension attempts to suppress implicit gender identity in the pages you visit.".
Extensie Screenshots
Download het CRX-bestand van de extensie Gender Blinder
Download Gender Blinder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
# 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 Basisinformatie over de Extensie
| Naam | |
| ID | fchfnnmlenjoppfonlacepldllfaglmg |
| Officiële URL | https://chromewebstore.google.com/detail/gender-blinder/fchfnnmlenjoppfonlacepldllfaglmg |
| Beschrijving | This extension attempts to suppress implicit gender identity in the pages you visit. |
| Bestandsgrootte | 15.04 KB |
| Aantal Installaties | 162 |
| Huidige Versie | 1.4 |
| Laatst Bijgewerkt | 2017-11-20 |
| Publicatiedatum | 2017-11-20 |
| Beoordeling | 2.88/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | genderblinder |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/peterwestmacott/genderblinder |
| Ondersteunde Talen | 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"
}
} | |