您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
新闻页隐藏侧边栏和下方新闻推荐
// ==UserScript== // @name 今日头条-宽版 // @namespace http://tampermonkey.net/ // @version 2024-03-28 // @description 新闻页隐藏侧边栏和下方新闻推荐 // @author AN drew // @match https://www.toutiao.com/article/* // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .article-detail-container .main{ width:auto!important; } .ttp-comment-block{ width:auto!important; } .article-detail-container .right-sidebar{ display:none!important; } .detail-end-feed{ display:none!important; } .seo-hot-link-list{ display:none!important; } .feed-m-loading{ display:none!important; } .article-detail-container .main .divide{ display:none!important; } `); setInterval(function(){ $('.check-more-reply').each(function(){ if(!$(this).hasClass('done')) { $(this).click(); $(this).addClass('done'); } }) },3000); })();