// ==UserScript== // @name IT之家了解到 // @version 2025.11.25 // @namespace https://greasyfork.org/zh-CN/users/452492-0x400 // @description 去掉文章内容中的废话 // @author 0x400 // @match https://www.ithome.com/* // @icon https://www.google.com/s2/favicons?domain=ithome.com // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; var regex = /(
]*>[\s\S]*?<\/div>|

]*>[\s\S]*?<\/p>|(]*>)?IT\s?之家(<\/>a)?[^,。:]*[,。:])/g; document.querySelector('.post_content').innerHTML = document.querySelector('.post_content').innerHTML.replaceAll(regex,''); })();