Prevent tab history flooding

Never again click Back and stay on the same page

目前為 2021-03-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Prevent tab history flooding
// @author       xiaoxiaoflood
// @version      1.0
// @include      *
// @description  Never again click Back and stay on the same page 
// @namespace https://gf.qytechs.cn/users/5802
// ==/UserScript==

history.pushState = new Proxy(history.pushState, {
  apply (target, thisArg, args) {
    let el = document.createElement('a');
    el.href = args[2];
    if (el.href != location.href)
      return target.apply(thisArg, args);
  }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址