Scroll to bookmarks by RightDeadFred

Scroll down a bit to see the outpost screen better

  1. // ==UserScript==
  2. // @name Scroll to bookmarks by RightDeadFred
  3. // @namespace https://greasyfork.org/users/150647
  4. // @version 1.0
  5. // @description Scroll down a bit to see the outpost screen better
  6. // @author RightDeadFred
  7. // @include /fairview\.deadfrontier\.com/
  8. // @exclude fairview.deadfrontier.com/onlinezombiemmo/index.php?page=21
  9. // @exclude https://fairview.deadfrontier.com/onlinezombiemmo/index.php?page=21
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. window.scrollBy(0,222);
  16. })();