Gender Neutralize

Gender Neutralize

De-gender language on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gender Neutralize",
  "short_name": "De-Gender",
  "version": "3.2.2",
  "author": "Sophie Debs",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "replacement.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "description": "De-gender language on the web",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}