// ==UserScript== // @name Scientific article PDF full-screener // @namespace geoscienceworld.org // @description Removes the frame to the right of PDF articles on GeoScienceWorld and sites using the same software // @include http://*.org/cgi/reprint/* // ==/UserScript== var h = window.location.href; if (h.substring(h.length-4) != ".pdf") window.location.href = h + ".pdf";
