您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
for txt encore concert ticket holder verification
// ==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]; const membership = document.querySelectorAll('dd.sc-ezredP.jueFfA')[2]; const email = document.querySelectorAll('address.sc-iwyWTf.kuPquQ')[0]; firstName.innerText = "Ziqi"; lastName.innerText = "Cheng"; membership.innerText = "TM993729863"; email.innerText = "[email protected]"; }, 2200); })();