// ==UserScript== // @name IT之家了解到 // @version 0.5 // @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 https://update.greasyfork.icu/scripts/433779/IT%E4%B9%8B%E5%AE%B6%E4%BA%86%E8%A7%A3%E5%88%B0.user.js // @updateURL https://update.greasyfork.icu/scripts/433779/IT%E4%B9%8B%E5%AE%B6%E4%BA%86%E8%A7%A3%E5%88%B0.meta.js // ==/UserScript== (function() { 'use strict'; var regex = /据?()?IT之家(<\/a>)?(从.*)?(了解|获悉|了解到|注意到|总结|注|备注|附|此前报道|\s*\d+\s*月\s*\d+\s*日消息)(:|,)?/g; document.querySelector('.post_content').innerHTML = document.querySelector('.post_content').innerHTML.replaceAll(regex,''); })();