'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'是由Jack Blalock开发的Chrome扩展程序,该扩展的主要功能是“'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.”。

下载'He or she' to 'They'扩展crx文件

下载'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"
        }
    ]
}