// ==UserScript== // @name jump@2ch回避 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 2ちゃんねるのリンクにjump@2chから自動的に遷移させます // @author Togetoge // @match http://jump.2ch.net/* // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js // @downloadURL none // ==/UserScript== $(function(){ $('a').each(function(){ var address = $(this).text(); if (address.slice(0, 4)=="http"){ $(this).attr("href", address); $(this).attr('target' , '_blank'); } }); })(jQuery);