解决CSDN不登录无法点击阅读全文问题

解决CSDN不登录无法阅读全文问题

最近CSDN不登录无法阅读全文,解决办法也非常直接,自己动手写一个脚本。
步骤如下:

1.由于本人用的Chrome浏览器,所以直接用的一个写脚本的插件,叫做Tampermonkey,自行在Chrome商店中下载。
2.打开插件,添加新脚本,添加如下代码即可

// ==UserScript==
// @name         CSDN button remove
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://blog.csdn.net/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    var paras =document.getElementById("article_content");
    var hideButton=document.getElementsByClassName("hide-article-box text-center");
    var boxBottom=document.getElementsByClassName("pulllog-box");
    boxBottom[0].parentNode.removeChild( boxBottom[0]);
    hideButton[0].parentNode.removeChild( hideButton[0]);
    paras.style="height: *px; ";
})();

3.运行脚本即可

你可能感兴趣的:(脚本程序)