jump@2ch回避

2ちゃんねるのリンクにjump@2chから自動的に遷移させます

当前为 2017-03-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         jump@2ch回避
// @namespace    http://tampermonkey.net/
// @version      0.1
// @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
// ==/UserScript==

$(document).ready(function(){
    var addres = $(location).attr('href');
    var result = addres.substr( 21 ) ;
    window.location.href = result;
})(jQuery);