'He or she' to 'They'

'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.

ما هو 'He or she' to 'They'؟

'He or she' to 'They' هو إضافة Chrome تم تطويرها بواسطة Jack Blalock، والميزة الرئيسية لها هي "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

تحميل ملف CRX للإضافة 'He or she' to 'They'

قم بتنزيل ملفات الامتداد 'He or she' to 'They' بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        I've added some additional gender neutral replacements:

his or her -> their
man or woman -> person
(s)he -> they

Clicking the extension's button in Chrome will now also run the script. Since the script only runs on its own when the page first loads, some dynamically loading pages (such as facebook) will still show the unreplaced text. Clicking the button will scan the document as it is now and do all the replacements.                    

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

الاسم 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
الوصف 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
حجم الملف 4.29 KB
عدد التثبيتات 304
النسخة الحالية 3.0
آخر تحديث 2018-04-08
تاريخ النشر 2018-04-08
تقييم 5.00/5 مجموع تقييمات 5
المطور Jack Blalock
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "'He or she' to 'They'",
    "version": "3.0",
    "description": "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.",
    "permissions": [
        "activeTab"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "button.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "js": [
                "they.js"
            ],
            "run_at": "document_end"
        }
    ]
}