自动在百度搜索关键词后加上 -李彦宏
// ==UserScript==
// @name 老板帮我去百度搜索广告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 自动在百度搜索关键词后加上 -李彦宏
// @author barnett
// @match *://*.baidu.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 监听百度搜索表单的提交事件
const searchForm = document.getElementById('form');
if (searchForm) {
searchForm.addEventListener('submit', function(event) {
// 获取当前输入的搜索关键词
const searchInput = document.getElementById('kw');
if (searchInput) {
// 检查是否已经包含 -李彦宏
if (!searchInput.value.includes('-李彦宏')) {
// 在搜索关键词后面加上 -李彦宏
searchInput.value += ' -李彦宏';
}
}
});
}
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址