There are 1 previous version of this script.
// ==UserScript==
// @name Wiley InterScience PDF frame remover
// @namespace geological-supplies.com
// @description Sets PDF articles viewed through Wiley Interscience to use the full browser screen
// @include http://www*.interscience.wiley.com/cgi-bin/fulltext/*/PDFSTART
// @include http://mrw.interscience.wiley.com*/pdf
// ==/UserScript==
if (window.location.href.match(/fulltext\/(\d*)\/PDFSTART/)) {
digits = /fulltext\/(\d*)\/PDFSTART/.exec(window.location.href);
window.location.href= "http://download.interscience.wiley.com.myaccess.library.utoronto.ca/cgi-bin/fulltext?ID="
+ digits[1]
+ "&PLACEBO=IE.pdf&mode=pdf";
} else {
articleID = /article\/(\w*\d+)\/current/.exec(window.location.href);
window.location.href = window.location.href + '/' + articleID[1] + '.pdf';
}
