Greasy Fork is available in English.
2ch各種連結還原
当前为
// ==UserScript==
// @name Re 2ch Links
// @version 0.2
// @description 2ch各種連結還原
// @include http://*.2ch.*/
// @include http://*.bbspink.com/*
// @include http://*.open2ch.net/*
// @namespace http://greasyfork.icu/users/6037
// ==/UserScript==
if(window.top == window.self){
{
var b=document.body;
b.innerHTML = b.innerHTML.replace(/(\<a\shref\=\")http\:\/\/.*?\/.*?(\"\starget\=\"\_blank\"\>)(http\:\/\/.*?)(\<\/a\>)/g,"$1$3$2$3$4");
}
}