NoNoun: Gender Neutral 3rd Person Plug-In

NoNoun: Gender Neutral 3rd Person Plug-In

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "words.js",
        "common.js",
        "content.js"
      ]
    }
  ]
}