IT之家了解到

去掉文章内容中的废话

目前為 2021-11-10 提交的版本,檢視 最新版本

// ==UserScript==
// @name         IT之家了解到
// @version      0.4
// @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
// ==/UserScript==

(function() {
    'use strict';
     var regex = /(<a[^<]*?>)?IT之家(<\/a>)?(获悉|了解到|\s*\d+\s*月\s*\d+\s*日消息),?/g;
     document.querySelector('.post_content').innerHTML=document.querySelector('.post_content').innerHTML.replaceAll(regex,'');
})();