Never again click Back and stay on the same page
当前为
// ==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://greasyfork.org/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);
}
});