腾讯新闻-宽版
// ==UserScript==
// @name 腾讯新闻-宽版
// @namespace https://bbs.tampermonkey.net.cn/
// @version 2024-12-30
// @description 新闻页隐藏侧边栏和下方新闻推荐
// @author ZZW
// @match https://news.qq.com/rain/a/*
// @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.content-article{
width: 1000px!important;
}
#qqcom-comment{
width: 1000px!important;
}
.download-banner-wrap{
display:none!important;
}
.user-article{
display:none!important;
}
.qqcom-jxvideo{
display:none!important;
}
.banner-bg{
display:none!important;
}
.oJRu_cx9EEuyfxvDz0As{
display:none!important;
}
#recommend{
display:none!important;
}
`);
setInterval(function(){
$('.check-more-reply').each(function(){
if(!$(this).hasClass('done'))
{
$(this).click();
$(this).addClass('done');
}
})
},3000);
})();