Re 2ch Links

2ch各種連結還原

目前为 2014-11-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         Re 2ch Links
// @version      0.4b
// @description  2ch各種連結還原
// @include      http://*.2ch.*/
// @include      http://*.bbspink.com/*
// @include      http://*.open2ch.net/*
// @noframes
// @namespace https://greasyfork.org/users/6037
// ==/UserScript==
var ras = 0;
var ra = function re1(){
    var b=document.body;
    b.innerHTML = b.innerHTML.replace(/(\<a\shref\=\")http\:\/\/.*?\/.*?(\"\starget\=\"\_blank\"\>)(http\:\/\/.*?)(\<\/a\>)/g, '$1$3$2$3$4');
    ras++;
        if (ras < 10){
            setTimeout(ra, 3000);}
    
};
ra();