'He or she' to 'They'

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

'He or she' to 'They' là gì?

'He or she' to 'They' là một tiện ích mở rộng Chrome được phát triển bởi Jack Blalock, và tính năng chính của nó là "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Tải xuống tệp CRX của tiện ích mở rộng 'He or she' to 'They'

Tải xuống các tệp mở rộng 'He or she' to 'They' dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
URL Chính Thức https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Mô tả 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Kích Thước Tệp 4.29 KB
Số Lần Cài Đặt 304
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2018-04-08
Ngày Phát Hành 2018-04-08
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Jack Blalock
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}