(un)gendered

Removes and replaces gendered language

Τι είναι το (un)gendered;

Το (un)gendered είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jhutensk, και η κύρια λειτουργία του είναι "Removes and replaces gendered language".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης (un)gendered

Λήψη αρχείων επέκτασης (un)gendered σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Gender is created through a process of communication. Our conceptions of ourselves and our understanding of what it means to be who we are is developed over years of interactions with other people, with media and with social institutions. A constant that infiltrates every stage of development is the binary system of gender and everything in our society works to restrict us within one of two boxes. 

For transgender individuals, and anyone else who doesn't fit into these boxes, this rigid enforcement of the gender binary can result in social dysphoria, which is discomfort and distress caused by social assumptions related to gender such as pronouns, social roles and/or body language. The often violent cultural climate leads over 41% of transgender individuals to attempt suicide, compared to the average suicide rate of 4.6%.

However, the naming of bodies as one thing or another is only made meaningful by the cultural context. Communication processes create culture; therefore, changing our communication processes can change our society. Digital communication has become the norm and the most meaningful intervention to restructure the gender binary comes in mediating those digital communication practices. 

The (Un)Gendered browser extension removes gendered language from your browsing experience and explores what a post-gender English could look like. Post-gender English looks different than a genderless language because the fundamental structure of English is colonial, binary and patriarchal and these elements cannot be removed, only worked around. The goal of this project is to start a conversation about the gender binary and the ways in which it is constantly reproduced. 

We all have the choice to actively combat the structural violence enacted by the gender binary.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα (un)gendered (un)gendered
ID inecongpgonbgoeklnknccbehgoijknm
Επίσημο URL https://chrome.google.com/webstore/detail/ungendered/inecongpgonbgoeklnknccbehgoijknm
Περιγραφή Removes and replaces gendered language
Μέγεθος Αρχείου 53.65 KB
Αριθμός Εγκαταστάσεων 359
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2017-12-15
Ημερομηνία Δημοσίευσης 2017-12-15
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής jhutensk
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "(un)gendered",
    "description": "Removes and replaces gendered language",
    "version": "0.1.2",
    "browser_action": {
        "default_icon": "ungendered128.png",
        "default_title": "icon"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "icons": {
        "48": "ungendered48.png",
        "128": "ungendered128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        }
    ]
}