スクリプトの利用は、自己責任でお願いします。
雀魂のプロフィールのコメント欄にあるアイコンをクリックすると、コメントしたプレイヤーのプロフィールを開くようにするスクリプトです。開発者ツールで実行できます。
window.onHeadClick = head => {
const PlayerInfo = uiscript.UI_OtherPlayerInfo.Inst;
const comment = PlayerInfo.note.comment_list.find(c => head === c?._cell?.head?.me);
if (!comment) return;
PlayerInfo.close();
setTimeout(() => PlayerInfo.show(comment.commenter.account_id), 700);
};
uiscript.UI_OtherPlayerInfo.Inst.note.content._items
.map(item => item.container.getChildByName("head"))
.filter(head => head._mouseEnableState === 0)
.forEach(head => head.on("click", null, () => onHeadClick(head)));