CSDN跳过关注 - zohar24/zohar GitHub Wiki
csdn跳过『关注博主即可阅读全文』
使用控制台
快捷键F12打开浏览器的开发者工具, 然后切换到Console界面。 复制javascript代码,回车。
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);
使用油猴
// ==UserScript==
// @name z
// @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);
})();