隐藏B站搜索框热搜

隐藏B站搜索框内的热搜

// ==UserScript==
// @name         隐藏B站搜索框热搜
// @namespace    https://greasyfork.org/zh-CN/scripts/474725
// @version      0.2
// @description  隐藏B站搜索框内的热搜
// @author       beibeibeibei
// @license      MIT
// @match        *search.bilibili.com/*
// @match        *.bilibili.com/
// @match        *.bilibili.com/?spm_id_from=*
// @match        https://www.bilibili.com/anime/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    requestIdleCallback(function (deadline) {
        let style = document.createElement('style');
        style.id = "hideTrending";
        style.innerHTML =".trending { display: none;}"
        document.head.appendChild(style);
    })
    // Your code here...
})();