Gender Neutralize

De-gender language on the web

Apa itu Gender Neutralize?

Gender Neutralize adalah ekstensi Chrome yang dikembangkan oleh soph-iest, dan fitur utamanya adalah "De-gender language on the web".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gender Neutralize

Unduh file ekstensi Gender Neutralize dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
URL Resmi https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Deskripsi De-gender language on the web
Ukuran File 43.21 KB
Jumlah Instalasi 294
Versi Saat Ini 3.2.2
Terakhir Diperbarui 2021-12-14
Tanggal Publikasi 2018-07-14
Penilaian 4.00/5 Total 6 Penilaian
Pengembang soph-iest
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/amity/gender-neutralize
URL Halaman Bantuan https://github.com/amity/gender-neutralize
URL Halaman Kebijakan Privasi https://github.com/soph-iest/gender-neutralize
Bahasa yang Didukung 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
    }
}