Greasy Fork is available in English.
2ch各種連結還原
当前为
// ==UserScript==
// @name Re 2ch Links
// @version 0.4b
// @description 2ch各種連結還原
// @include http://*.2ch.*/
// @include http://*.bbspink.com/*
// @include http://*.open2ch.net/*
// @noframes
// @namespace http://greasyfork.icu/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();