// ==UserScript== // @name 页面打开后向下滚动一段距离 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author none // @include http* // @include ftp // @grant none // @downloadURL none // ==/UserScript== (function() { document.documentElement.scrollTop += 100; // Your code here... })();