NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name New Userscript // @namespace http://gsimo3s.coms/ // @version 0.2 // @description remove annoying redirects from uol.com.br domain // @author You // @match http://*.uol.com.br/* // @exclude http://*.uol.com.br/*.js // @require https://code.jquery.com/jquery-2.1.4.min.js // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; $("a").each(function( index ) { var a = $(this); if(a && a.attr('href')) { if(a.attr('href').indexOf('redir=') > 0) { a.attr('href', a.attr('href').split('redir=')[1]); return; } if(a.attr('href').indexOf('u=') > 0) { a.attr('href', a.attr('href').split('u=')[1]); return; } } });