Missed Gender

Missed Gender

Creates a more comfortable experience for those in the trans community by replacing a user's "deadname" with a name they identify as

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Missed Gender",
  "description": "Creates a more comfortable experience for those in the trans community by replacing a user's \"deadname\" with a name they identify as",
  "version": "1.0",
  "browser_action": {
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "missed_gender_icon-16x16.png",
    "48": "missed_gender_icon-48x48.png",
    "128": "missed_gender_icon-128x128.png"
  },
  "permissions": [
    "storage"
  ]
}