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