'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
官方網址 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"
        }
    ]
}