页面打开后向下滚动一段距离

try to take over the world!

// ==UserScript==
// @name         页面打开后向下滚动一段距离
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       none
// @include        http*
// @include        ftp
// @grant        none
// ==/UserScript==

(function() {
    document.documentElement.scrollTop += 300;
    // Your code here...
})();