Gender Neutralize

De-gender language on the web

ما هو Gender Neutralize؟

Gender Neutralize هو إضافة Chrome تم تطويرها بواسطة soph-iest، والميزة الرئيسية لها هي "De-gender language on the web".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Gender Neutralize

قم بتنزيل ملفات الامتداد Gender Neutralize بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
عنوان URL الرسمي https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
الوصف De-gender language on the web
حجم الملف 43.21 KB
عدد التثبيتات 294
النسخة الحالية 3.2.2
آخر تحديث 2021-12-14
تاريخ النشر 2018-07-14
تقييم 4.00/5 مجموع تقييمات 6
المطور soph-iest
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/amity/gender-neutralize
عنوان صفحة المساعدة https://github.com/amity/gender-neutralize
عنوان صفحة سياسة الخصوصية https://github.com/soph-iest/gender-neutralize
اللغات المدعومة 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
    }
}