NoNoun: Gender Neutral 3rd Person Plug-In

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

Cos'è NoNoun: Gender Neutral 3rd Person Plug-In?

NoNoun: Gender Neutral 3rd Person Plug-In è un'estensione di Chrome sviluppata da mnbeer, e la sua funzione principale è "Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NoNoun: Gender Neutral 3rd Person Plug-In

Scarica i file di estensione NoNoun: Gender Neutral 3rd Person Plug-In in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome NoNoun: Gender Neutral 3rd Person Plug-In NoNoun: Gender Neutral 3rd Person Plug-In
ID jjdkbacgfkpenoeldjpjojppncekedin
URL Ufficiale https://chromewebstore.google.com/detail/nonoun-gender-neutral-3rd/jjdkbacgfkpenoeldjpjojppncekedin
Descrizione Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.
Dimensione del File 64.57 KB
Conteggio Installazioni 249
Versione Corrente 0.0.1.1
Ultimo Aggiornamento 2018-05-09
Data di Pubblicazione 2018-05-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore mnbeer
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}