jump@5ch回避

5ちゃんねるに貼られているリンクにjump@5chを介さずにアクセスします

// ==UserScript==
// @name         jump@5ch回避
// @namespace    http://tampermonkey.net/
// @version      1.05
// @description  5ちゃんねるに貼られているリンクにjump@5chを介さずにアクセスします
// @author       Togetoge
// @match        http://*.2ch.sc/*
// @match        https://*.2ch.sc/*
// @match        http://*.5ch.net/*
// @match        https://*.5ch.net/*
// @match        http://*.bbspink.com/*
// @match        https://*.bbspink.com/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// ==/UserScript==

$(function(){
  $('a').each(function(){
    var address = $(this).text();
    if (address.slice(0, 4)=="http"){
    $(this).attr("href", address);
    $(this).attr('target' , '_blank');
    }
  });
})(jQuery);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址