Greasy Fork is available in English.
删除百度首页无关元素,保持清爽界面
// ==UserScript==
// @name 百度首页精简
// @namespace http://tampermonkey.net/
// @version 0.01
// @description 删除百度首页无关元素,保持清爽界面
// @author zhushixing
// @match https://www.baidu.com/*
// @run-at document-start
// @match http://localhost:*/*
// @match http://127.0.0.1:*/*
// @grant unsafeWindow
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const originalConsoleLog = unsafeWindow.console.log;
unsafeWindow.console.log = function (...args) {
if (
args.length === 2 &&
typeof args[0] === "string" &&
args[0].includes(":")
) {
originalConsoleLog(...args);
}
};
console.log("---------console过滤脚本运行中----------");
})();