// ==UserScript== // @name 百度搜索引擎推广参数移除 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 屏蔽百度搜索引擎推广参数 // @author 捈荼 // @license MIT // @match https://www.baidu.com/s?*tn=* // @run-at document-start // @grant unsafeWindow // @downloadURL none // ==/UserScript== "use strict"; (function () { window.stop(); document.location.href = document.location.href.replace(/(tn=[^&]*&)|(&tn=[^&]*)/g, ''); })();