Gender Neutralize

De-gender language on the web

Cos'è Gender Neutralize?

Gender Neutralize è un'estensione di Chrome sviluppata da soph-iest, e la sua funzione principale è "De-gender language on the web".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gender Neutralize

Scarica i file di estensione Gender Neutralize in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extension to turn unnecessarily gendered words into their gender-neutral alternatives across the web. Currently covers traditional male and female pronouns, relational titles (e.g. "boyfriend", "daughter"), professional and occupational titles (e.g. "Congressman"), and more.

Options to toggle changing of personal pronouns on or off, as well as inputting a substitute for "dude", "guys", and other slang-based terms.                    

Informazioni di Base sull'Estensione

Nome Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
URL Ufficiale https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Descrizione De-gender language on the web
Dimensione del File 43.21 KB
Conteggio Installazioni 294
Versione Corrente 3.2.2
Ultimo Aggiornamento 2021-12-14
Data di Pubblicazione 2018-07-14
Valutazione 4.00/5 Totale 6 Valutazioni
Sviluppatore soph-iest
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/amity/gender-neutralize
URL della Pagina di Aiuto https://github.com/amity/gender-neutralize
URL della Pagina della Politica sulla Privacy https://github.com/soph-iest/gender-neutralize
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gender Neutralize",
    "short_name": "De-Gender",
    "version": "3.2.2",
    "author": "Sophie Debs",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "replacement.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "description": "De-gender language on the web",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png"
    },
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}