去网页版有道云广告

去掉左下角广告,拉高文件夹显示列表

// ==UserScript==
// @name         去网页版有道云广告
// @namespace    有道云笔记
// @version      0.1
// @description  去掉左下角广告,拉高文件夹显示列表
// @author       Simet.Zeng
// @match        https://note.youdao.com/*/**
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.onload=function (){
        var sidebarFt = document.getElementsByClassName('sidebar-ft')[0];
        sidebarFt.parentNode.removeChild(sidebarFt);

        document.getElementsByClassName('sidebar-content')[0].style.bottom = 0;
    };
})();