-
Notifications
You must be signed in to change notification settings - Fork 31
/
deadname-remover.user.js
36 lines (35 loc) · 1.02 KB
/
deadname-remover.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// ==UserScript==
// @name Deadname-Remover
// @version 1.1.2
// @description Replace dead names with preferred names.
// @author William Hayward & Ari Gibson
// @license MIT
// @match *://*/*
// @grant none
// @run-at document-start
// @namespace https://github.com/arimgibson/Deadname-Remover
// @supportURL https://github.com/arimgibson/Deadname-Remover/issues
// @require https://github.com/arimgibson/Deadname-Remover/raw/main/deadname-remover.require.js
// @updateURL https://github.com/arimgibson/Deadname-Remover/raw/main/deadname-remover.meta.js
// @downloadURL https://github.com/arimgibson/Deadname-Remover/raw/main/deadname-remover.user.js
// ==/UserScript==
(function () {
const settings = {
name: {
first: '',
middle: '',
last: '',
},
deadname: [
{
first: '',
middle: '',
last: '',
},
],
enabled: true,
stealthMode: false,
highlight: false,
};
DeadnameRemover.start(settings);
}());