屏蔽百度搜索引擎推广参数
// ==UserScript== // @name 百度搜索引擎推广参数移除 // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description 屏蔽百度搜索引擎推广参数 // @author 捈荼 // @license Apache License 2.0 // @match https://www.baidu.com/s?*tn=* // @run-at document-start // @grant unsafeWindow // ==/UserScript== // commented by ChatGPT (function () { "use strict"; // Stop the loading of the current page window.stop(); // Replace the "tn" parameter and its value in the URL with an empty string document.location.href = document.location.href.replace(/(tn=[^&]*&)|(&tn=[^&]*)/g, ''); })();