NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Prevent auto-refresh of News Corp Australia Newspapers // @version 6 // @description Stops auto-refresh reload of the main pages of News.com.au, The Australian, The Daily Telegraph, The Herald Sun, The Courier Mail, The Advertiser, and Perth Now // @match http://www.news.com.au // @match http://www.theaustralian.com.au // @match http://www.dailytelegraph.com.au // @match http://www.heraldsun.com.au // @match http://www.couriermail.com.au // @match http://www.adelaidenow.com.au // @match http://www.perthnow.com.au // @match http://www.news.com.au/?* // @match http://www.theaustralian.com.au/?* // @match http://www.dailytelegraph.com.au/?* // @match http://www.heraldsun.com.au/?* // @match http://www.couriermail.com.au/?* // @match http://www.adelaidenow.com.au/?* // @match http://www.perthnow.com.au/?* // @run-at document-start // ==/UserScript== unsafeWindow.DONTREFRESHPLEASE = 1; var setTimeoutOrig = unsafeWindow.setTimeout; unsafeWindow.setTimeout = function(f,t) { return t!=3e5 ? setTimeoutOrig(f,t) : null; };