Greasy Fork

Greasy Fork is available in English.

1101txtmg-ziqicheng

for txt encore concert ticket holder verification

目前为 2024-10-18 提交的版本,查看 最新版本

// ==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
// ==/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);
})();