Gender Neutralize

De-gender language on the web

Co to jest Gender Neutralize?

Gender Neutralize to rozszerzenie Chrome opracowane przez soph-iest, a jego główną funkcją jest „De-gender language on the web”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gender Neutralize

Pobierz pliki rozszerzeń Gender Neutralize w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
Oficjalny URL https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Opis De-gender language on the web
Rozmiar pliku 43.21 KB
Liczba instalacji 294
Aktualna Wersja 3.2.2
Ostatnia Aktualizacja 2021-12-14
Data Publikacji 2018-07-14
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper soph-iest
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/amity/gender-neutralize
Adres URL Strony Pomocy https://github.com/amity/gender-neutralize
Adres URL Strony Polityki Prywatności https://github.com/soph-iest/gender-neutralize
Obsługiwane Języki 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
    }
}