jadi2.undo.it

mirror jadi.net to http://jadi2.undo.it by hexboy

Mint 2014.08.24.. Lásd a legutóbbi verzió

// ==UserScript==
// @name        jadi2.undo.it
// @namespace   HexBoy
// @include     http://jadi2.undo.it/
// @version     1.10
// @grant       none
// @description mirror jadi.net to http://jadi2.undo.it by hexboy
// ==/UserScript==
if (document.location.hostname == 'jadi.net') {
  var URL = document.location.origin + document.location.pathname + document.location.search;
  window.location = URL.replace('jadi.net', 'jadi2.undo.it');
}
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/');
}