您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tsumanne.
// ==UserScript== // @name Thread info refine // @namespace http://tampermonkey.net/ // @version 0.1 // @description tsumanne. // @author eggplants // @homepage https://github.com/eggplants // @match https://tsumanne.net/*/data/*/*/*/*/ // @grant none // ==/UserScript== function x(sValue) { var aResult = new Array(); var D = document; var a = D.evaluate( sValue, D, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null ); for (var i = 0;i < a.snapshotLength;i++) { aResult.push(a.snapshotItem(i)) } return aResult }; for(var i of x(`//*[@class="rsc"]`)) { i.textContent+=":\t" } for(var i of x(`//*[@class="cnw"]`)) { i.textContent=i.textContent.replace(/\)/, ")\t") i.textContent+="\t";; } for(var i of x(`//*[@class="cno"]`)) { i.textContent+="\t" } document.querySelectorAll('object[data*="ad.html"]').forEach(e=>e.remove())
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址