no scroll

prevent some websites from scrolling, edit this to include more websites

As of 2021-03-24. See the latest version.

// ==UserScript==
// @name        no scroll
// @namespace   http://bzzzzdzzzz.blogspot.com/
// @version     0.1
// @description prevent some websites from scrolling, edit this to include more websites
// @author      BZZZZ
// @include     /^https?\:\/\/woomy-arras\.io\/([?#]|$)/
// @include     /^https?\:\/\/tankster\.io\/([?#]|$)/
// @include     /^https?\:\/\/obstar\.io\/([?#]|$)/
// @include     /^https?\:\/\/obstar\.glitch\.me\/([?#]|$)/
// @include     /^https?\:\/\/oobstar\.glitch\.me\/([?#]|$)/
// @grant       none
// @run-at      document-end
// ==/UserScript==

document.getElementsByTagName("body")[0].setAttribute("onscroll","window.scrollTo(0,0);");