NoNoun: Gender Neutral 3rd Person Plug-In

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

What is NoNoun: Gender Neutral 3rd Person Plug-In?

NoNoun: Gender Neutral 3rd Person Plug-In is a Chrome extension developed by mnbeer, and its main feature is "Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.".

Extension Screenshots

screenshot

Download NoNoun: Gender Neutral 3rd Person Plug-In Extension CRX File

Download NoNoun: Gender Neutral 3rd Person Plug-In extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]                    

Extension Basic Information

Name NoNoun: Gender Neutral 3rd Person Plug-In NoNoun: Gender Neutral 3rd Person Plug-In
ID jjdkbacgfkpenoeldjpjojppncekedin
Official URL 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.
File Size 64.57 KB
Installation Count 249
Current Version 0.0.1.1
Last Updated 2018-05-09
Publish Date 2018-05-08
Rating 5.00/5 Total 1 Ratings
Developer mnbeer
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}