Examine source code of They

Inspect and view changes in They source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "They",
  "version": "1",
  "description": "Replaces \"he or she\" and variations thereof with the gender neutral term \"they\".",
  "icons": {
    "64": "icons/64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "replace.js"
      ]
    }
  ]
}