Gender Neutralize

De-gender language on the web

Vad är Gender Neutralize?

Gender Neutralize är en Chrome-tillägg utvecklad av soph-iest, och dess huvudfunktion är "De-gender language on the web".

Tilläggsskärmbilder

screenshot

Ladda ner Gender Neutralize-förlängningens CRX-fil

Ladda ner Gender Neutralize-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
Officiell webbadress https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Beskrivning De-gender language on the web
Filstorlek 43.21 KB
Antal Installationer 294
Aktuell Version 3.2.2
Senast Uppdaterad 2021-12-14
Publiceringsdatum 2018-07-14
Betyg 4.00/5 Totalt 6 Betyg
Utvecklare soph-iest
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/amity/gender-neutralize
Hjälpsida URL https://github.com/amity/gender-neutralize
URL till Sekretesspolicy Sidan https://github.com/soph-iest/gender-neutralize
Stödda Språk 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
    }
}