Prevent Spacebar Doing Page Down

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);