mirror jadi.net to http://jadi2.undo.it by hexboy
当前为
// ==UserScript==
// @name jadi2.undo.it
// @namespace HexBoy
// @include http://jadi2.undo.it/
// @version 1
// @grant none
// @description mirror jadi.net to http://jadi2.undo.it by hexboy
// ==/UserScript==
for (var i = 0; i < document.links.length; i++)
{
document.links[i].href = document.links[i].href.replace('http://jadi.net/', 'http://jadi2.undo.it/');
}