Deadname-Remover icon indicating copy to clipboard operation
Deadname-Remover copied to clipboard

Deadname remover for several names

Open MRodGam opened this issue 4 years ago • 2 comments

Hi! I am using this extension not to remove my own name but the deadnames of multiple friends and family that still haunt the internet. Maybe you would consider adding a feature to manage several different deadnames, and their respective replacement? As far as I can tell, it can identify several versions of the written deadname, but it can only be replaced by one thing.

Thank you in advance! Great extension, it has really made the internet a more pleasant place.

MRodGam avatar Nov 20 '20 11:11 MRodGam

Hi @MRodGam ! Sorry for the late response, I'm in the slow process of trying to clear out some of these issues that have been neglected.

This is actually already a feature, albeit a slightly hidden one. Check out #234 for some more infomation 😄 . If you need more help regarding this feature specifically, add a comment there and feel free to tag me using @arigibson

cc: @Gusted, this one can be closed 😀

arimgibson avatar Dec 28 '20 05:12 arimgibson

I checked out #234, but what you suggested doesn't actually seem to cover the requested feature.

Already implemented: Map multiple dead names to one real name, e.g. [deadnames] -> realname

Requested: Multiple such mappings, e.g. [([deadnames] -> realname)],

names: [
    {
        // person 1
		name: {
			first: "C",
			middle: "",
			last: ""
		},
		deadname: [
			{
				first: "A",
				middle: "",
				last: ""
			},
			{
				first: "B",
				middle: "",
				last: ""
			}
		]
    },
    {
        // person 2
		name: {
			first: "F",
			middle: "",
			last: ""
		},
		deadname: [
			{
				first: "D",
				middle: "",
				last: ""
			},
			{
				first: "E",
				middle: "",
				last: ""
			}
		]
    }
],

fogti avatar Apr 17 '21 16:04 fogti