Greasy Fork

Greasy Fork is available in English.

删除HiMCBBS的AI帖子总结

删除HiMCBBS的AI帖子总结,方便阅读帖子

// ==UserScript==
// @name         删除HiMCBBS的AI帖子总结
// @namespace    Mooshed88
// @version      1.0
// @description  删除HiMCBBS的AI帖子总结,方便阅读帖子
// @author       Mooshed88
// @match        https://www.himcbbs.com/threads/*
// @grant        none
// @run-at       document-end
// @license      Unlicense
// ==/UserScript==

(function() {
    'use strict';
     const articles = document.querySelectorAll('article.message-body.summary-body');
     articles.forEach(article => article.remove());
})();