CSDN免关注阅读全文

CSDN自动展开阅读全文,不用关注博主

< 脚本 CSDN免关注阅读全文 的反馈

提问 / 留言

C N
§
发布于:2023-01-04

document.body.contentEditable = true
document.oncopy=function(){
event.returnValue=true;
};
document.onselectstart=function(){
event.returnValue=true;
};
document.oncontextmenu=function(){
event.returnValue=true;
};
// CSDN 解除关注后才能阅读全文的限制
$("#article_content").removeAttr("style");
$(".hide-article-box").remove();

发布留言

登录以发布留言。