百度搜索框去掉默认搜索广告新闻

这个脚本主要是百度搜索框

目前为 2024-12-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         百度搜索框去掉默认搜索广告新闻
// @namespace    http://tampermonkey.net/
// @version      2024-12-21
// @description  这个脚本主要是百度搜索框
// @author       chencheng
// @match        https://*.baidu.com*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      Apache-2.0
// ==/UserScript==

(function() {
    'use strict';

   function modifyBaiduInputPlaceholder() {
        // Find the input element with id 'kw'
        var inputElement = document.getElementById('kw');
        if (inputElement) {
            // Set the placeholder to an empty string
            inputElement.placeholder = '';
        }
    }

    // Wait for the DOM to be fully loaded before executing the function
    window.addEventListener('load', modifyBaiduInputPlaceholder);
    
})();

QingJ © 2025

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