'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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        }
    ]
}