fuck_csdn_blog

自动阅读全文

As of 2018-05-05. See the latest version.

// ==UserScript==
// @name         fuck_csdn_blog
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  自动阅读全文
// @author       wlb
// @match        https://blog.csdn.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // auto click read more
    if($('#btn-readmore') && $('#btn-readmore').length > 0){
        console.log('auto read more');
        $('#btn-readmore').click();
    }
    
    
    remove('.tool-box'); // 删除分享
    remove('.recommend-box'); // 删除推荐
    // remove('#asideFooter'); // 删除联系我们
    remove('aside'); // 删除侧边栏
    remove('.edu-promotion'); // 删除底部广告

    // delete by expression
    function remove(exp){
        var node = $(exp);
        if(node && node.length > 0){
            node.remove();
        }    
    }

})();