'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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}