屏蔽百度云开屏云一朵、云U盘弹窗及左侧上部几个功能

依然是自用型脚本

// ==UserScript==
// @name         屏蔽百度云开屏云一朵、云U盘弹窗及左侧上部几个功能
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  依然是自用型脚本
// @author       Kurisuame
// @match        *://pan.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    //给!我!爬!
    $('.nd-chat-guide').hide();
    $('.nd-chat-guide__modal').hide();
    $('.wp-s-aside-nav__main-top').hide();
    $('.wp-s-aside-nav-bubble-close').hide();
    $('.wp-s-aside-nav-bubble-title').hide();
    $('.wp-s-aside-nav-bubble-desc').hide();
    $('.wp-s-aside-nav-bubble-use').hide();
    $('.nd-chat-ai-btn__open').hide();
    $('.nd-operate-guidance').hide();
    $('.business-ad-content').hide();
    $('.nd-chat-normal__open-img').hide();
    $('.nd-chat-normal').hide();

    //
    setTimeout(function(){
    $('.nd-chat-guide').hide();
    $('.nd-chat-guide__modal').hide();
    }, 1000);
    setTimeout(function(){
    $('.wp-s-aside-nav-bubble-close').hide();
    $('.wp-s-aside-nav-bubble-title').hide();
    $('.wp-s-aside-nav-bubble-desc').hide();
    $('.wp-s-aside-nav-bubble-use').hide();
    $('.nd-chat-ai-btn__open').hide();
    $('.nd-chat-normal__open-img').hide();
    }, 2000);
    setTimeout(function(){
    $('.wp-s-aside-nav__main-top').hide();
    $('.nd-operate-guidance').hide();
    $('.business-ad-content').hide();
    $('.nd-chat-normal').hide();
    $('.').hide();
    }, 3000);
    setTimeout(function(){
    $('.nd-operate-guidance').hide();
    $('.').hide();
    }, 8000);


})();