NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // // @name UnderNewser // @description Skip annoying overnewser.com waiting time // @namespace http://www.avramovic.info // @author Nemanja (http://twitter.com/avramator) // @license GNU GPL v3 (http://www.gnu.org/copyleft/gpl.html) // @homepage http://www.avramovic.info // //Version Number // @version 1.0 // // Urls process this user script on // @include http://route.overnewser.com/* // // ==/UserScript== var original = document.querySelector('meta[property="og:url"]').content; if (original !== '') { window.location = original; }