UserScript:haku
villagepump - /villagepump/@sta
sta - /sta/icon-of-アウラ
CTRL + j
haku.iconにゃーん 
code:script.js
const textInput = document.getElementById("text-input");
textInput.addEventListener("keydown", e => {
if (e.key !== "j" || !e.ctrlKey) return;
e.preventDefault();
e.stopPropagation();
textInput.value = scrapbox.Project.name === "suto3" ?
"haku.iconにゃーん " :
"/suto3/haku.iconにゃーん ";
const uiEvent = document.createEvent("UIEvent");
uiEvent.initEvent("input", true, false);
textInput.dispatchEvent(uiEvent);
});
UserScript.icon
https://img.shields.io/badge/JavaScript-UserScript_haku-F7DF1E.svg?logo=javascript&style=for-the-badge