您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
hides blue checks on xcancel
当前为
// ==UserScript== // @name xcancel hide twitter blue // @namespace http://tampermonkey.net/ // @version 2025-01-23 // @description hides blue checks on xcancel // @author You // @match https://xcancel.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=xcancel.com // @grant none // @license MIT // ==/UserScript== // Setting esversion to 11 to use optional chaining. /* jshint esversion: 11 */ (function() { 'use strict'; //remove blue check replies document.querySelectorAll('.icon-ok.verified-icon.blue').forEach((e) => { e.closest('.reply.thread.thread-line')?.remove(); }) //if there are no replies in the current batch, click load more if(document.querySelectorAll('.reply.thread.thread-line').length == 0 && window.location.href.includes('status')){ document.querySelectorAll('.show-more a')[document.querySelectorAll('.show-more a').length - 1].click(); } })();