NoNoun: Gender Neutral 3rd Person Plug-In

Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.

Qu'est-ce que NoNoun: Gender Neutral 3rd Person Plug-In ?

NoNoun: Gender Neutral 3rd Person Plug-In est une extension Chrome développée par mnbeer, et sa fonction principale est "Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NoNoun: Gender Neutral 3rd Person Plug-In

Téléchargez les fichiers d'extension NoNoun: Gender Neutral 3rd Person Plug-In au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension replaces all gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) on a Web page with gender neutral alternatives. [English language only]                    

Informations de Base sur l'Extension

Nom NoNoun: Gender Neutral 3rd Person Plug-In NoNoun: Gender Neutral 3rd Person Plug-In
ID jjdkbacgfkpenoeldjpjojppncekedin
URL Officiel https://chromewebstore.google.com/detail/nonoun-gender-neutral-3rd/jjdkbacgfkpenoeldjpjojppncekedin
Description Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.
Taille du Fichier 64.57 KB
Nombre d'Installations 249
Version Actuelle 0.0.1.1
Dernière Mise à Jour 2018-05-09
Date de Publication 2018-05-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur mnbeer
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoNoun: Gender Neutral 3rd Person Plug-In",
    "description": "Replace gender specific pronouns (he\/she), objects (him\/her), and possessives (his\/hers) with gender neutral alternatives.",
    "version": "0.0.1.1",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "nonoun.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "words.js",
                "common.js",
                "content.js"
            ]
        }
    ]
}