// ==UserScript==
// @name          Anchor links scroll up
// @description   Scrolls up a page somewhat when it is pointed to an HTML anchor
// @include       *#*
// @Author        Protector one
// ==/UserScript==

(function(){
   document.documentElement.scrollTop -= 180;
})();
