Greasy Fork is available in English.
这个脚本主要是百度搜索框
当前为
// ==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);
})();