// ==UserScript== // @name 果壳-宽版 // @namespace https://bbs.tampermonkey.net.cn/ // @version 2024-12-31 // @description 新闻页隐藏侧边栏和下方新闻推荐 // @author ZZW // @match https://www.guokr.com/article/* // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .layout__Wrapper-zgzfsa-1.Article__StyleWrapper-sc-1dunux7-2.eflYNZ{ width: 1000px!important; } .layout__Skeleton-zgzfsa-3.styled__ArticleTitle-sc-1ctyfcr-0.ejzYGj{ width: 1000px!important; } .layout__Skeleton-zgzfsa-3.styled__ArticleInfo-sc-1ctyfcr-2.bTXgLO{ width: 1000px!important; } .layout__Skeleton-zgzfsa-3.styled__ArticleContent-sc-1ctyfcr-4.bxHoEL{ width: 1000px!important; } .layout__Wrapper-zgzfsa-1.gsxfuW{ display:none!important; } `); })();