// ==UserScript== // @name 1101txtmg-ziqicheng // @namespace http://tampermonkey.net/ // @version 2024-10-17 // @description for txt encore concert ticket holder verification // @author xuyixin // @match https://fanevent.weverse.io/details/TOMORROW%20X%20TOGETHER // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => { const firstName = document.querySelectorAll('dd.sc-ezredP.jueFfA')[0]; const lastName = document.querySelectorAll('dd.sc-ezredP.jueFfA')[1]; firstName.innerText = "Ziqi"; lastName.innerText = "Cheng"; }, 2200); })();