Add squigglify
This commit is contained in:
parent
ced81cc429
commit
2a7c86d798
|
@ -0,0 +1,17 @@
|
|||
// ==UserScript==
|
||||
// @name Squigglify
|
||||
// @namespace Violentmonkey Scripts
|
||||
// @match https://multiplayerpiano.net/*
|
||||
// @grant none
|
||||
// @version 1.0
|
||||
// @author Hri7566
|
||||
// @description 1/7/2024, 1:05:10 AM
|
||||
// ==/UserScript==
|
||||
|
||||
globalThis.squigglify = name => {
|
||||
let arr = ["๖ۣۜ", ...name.split("")];
|
||||
arr.splice(4, 0, "͜");
|
||||
arr.splice(6, 0, "̬");
|
||||
arr.splice(8, 0, "͡");
|
||||
return arr.join("");
|
||||
}
|
Loading…
Reference in New Issue