// ==UserScript== // @name 澎湃新闻-宽版 // @namespace https://bbs.tampermonkey.net.cn/ // @version 2024-12-31 // @description 新闻页隐藏侧边栏和下方新闻推荐 // @author ZZW // @match https://www.thepaper.cn/* // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .index_wrapper__L_zqV{ width: 1000px!important; } .index_commentWrap__N_wpL{ width: 1000px!important; } .index_content___Uhtm{ display:none!important; } .mdCard{ display:none!important; } `); })();