Prevent Spacebar Doing Page Down

When the Spacebar key is received outside a text entry area, discard it

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Prevent Spacebar Doing Page Down
// @author      Jefferson "jscher2000" Scher
// @namespace   JeffersonScher
// @description When the Spacebar key is received outside a text entry area, discard it
// @include     *
// @version     1.0
// @grant       none
// @copyright   Copyright 2018 Jefferson Scher
// @license     BSD 3-clause
// ==/UserScript==

function PSDPD_KeyCheck(key){
  // Don't modify text editing
  if (key.target.nodeName == "INPUT" || key.target.nodeName == "TEXTAREA" || key.target.nodeName == "SELECT") return;
  if (key.target.hasAttribute("contenteditable") && key.target.getAttribute("contenteditable") == "true") return;
  // Don't modify certain combinations
  if (key.ctrlKey || key.altKey || key.metaKey) return;
  // If it's a space character, kill the event
  if (key.key == ' '){
    key.stopPropagation();
    key.preventDefault();
    return false;
  }
}
// Monitor the keydown event
document.addEventListener('keydown', PSDPD_KeyCheck);