csdn跳过『关注博主即可阅读全文』

垃圾CSDN搞出来一个『关注博主即可阅读全文』的功能,非常的污染关注列表

以下脚本可以跳过关注阅读全文:

var article_content=document.getElementById("article_content");
article_content.removeAttribute("style");  
var follow_text=document.getElementsByClassName('follow-text')[0];
follow_text.parentElement.parentElement.removeChild(follow_text.parentElement); 
var hide_article_box=document.getElementsByClassName(' hide-article-box')[0];
hide_article_box.parentElement.removeChild(hide_article_box);

用法:

见上图所示,按快捷键F12打开浏览器的开发者工具, 然后切换到Console界面。

然后复制上面的javascript代码,回车。


使用油猴插件

新建脚本,内容如下

// ==UserScript==
// @name         testcsdn
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @match        https://*/*
// @author       You
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var article_content=document.getElementById("article_content");
article_content.removeAttribute("style");

var follow_text=document.getElementsByClassName('follow-text')[0];

follow_text.parentElement.parentElement.removeChild(follow_text.parentElement);

var hide_article_box=document.getElementsByClassName(' hide-article-box')[0];
hide_article_box.parentElement.removeChild(hide_article_box);

})();

保存并启用即可

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容