prevent some websites from scrolling, edit this to include more websites
当前为
// ==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);");