Ban Baidu hot news

Ban Baidu hot news on the search bar

// ==UserScript==
// @name         Ban Baidu hot news
// @namespace    http://tampermonkey.net/
// @version      2025-04-04
// @description  Ban Baidu hot news on the search bar
// @author       ZeroSherd
// @match        https://www.baidu.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function removePlaceholder() {
        let input = document.querySelector('.s_ipt');
        if (input) {
            input.setAttribute('placeholder', '');
            input.removeAttribute('placeholder');
        }
    }

    let observer = new MutationObserver(() => removePlaceholder());
    observer.observe(document, { childList: true, subtree: true });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址