您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove Crimes Description Torn
// ==UserScript== // @name RCD-Torn // @namespace **Imperatriz[2683794]** // @version 1.0 // @description Remove Crimes Description Torn // @match https://www.torn.com/crimes.php* // @grant none // ==/UserScript== (function() { 'use strict'; const eeh_observer = new MutationObserver(function(mutations) { if (!typeof jQuery) { return; } var ulElement = document.querySelector('ul.desc.info.t-blue-cont.h'); if (ulElement) { ulElement.parentNode.removeChild(ulElement); } }); eeh_observer.observe(document, {attributes: false, childList: true, characterData: false, subtree:true}); })();