123网盘去广告

简单的把123网盘的头部广告和文件栏广告给去掉

// ==UserScript==
// @name         123网盘去广告
// @namespace    none
// @version      1.0.0
// @description  简单的把123网盘的头部广告和文件栏广告给去掉
// @author       gogofishman
// @license      MIT
// @match        *://*.123pan.com/*
// @run-at       document-start
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';


    GM_addStyle(`
        .ant-layout >div[class="ant-carousel"] {
            display: none;
        }

        div[class="advBanner"] {
            display: none !important;
        }
    `);
})();