Backspace Means Backspace

Prevents Back action on Backspace key

// ==UserScript==
// @name        Backspace Means Backspace
// @namespace   https://github.com/infofarmer
// @version     0.1.1
// @description Prevents Back action on Backspace key
// @include     *
// @run-at      document-start
// @copyright   2014+, nollegcraft/playswithlife
// ==/UserScript==

window.addEventListener('keydown', function(e) {
    if (e.keyIdentifier == 'U+0008' || e.keyIdentifier == 'Backspace') {
        if (e.target == document.body) {
            e.preventDefault();
        }
    }
}, true);

QingJ © 2025

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