jadi2.undo.it

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

当前为 2014-08-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name jadi2.undo.it
  3. // @namespace HexBoy
  4. // @include http://jadi2.undo.it/
  5. // @version 1
  6. // @grant none
  7. // @description mirror jadi.net to http://jadi2.undo.it by hexboy
  8. // ==/UserScript==
  9. for (var i = 0; i < document.links.length; i++)
  10. {
  11. document.links[i].href = document.links[i].href.replace('http://jadi.net/', 'http://jadi2.undo.it/');
  12. }
  13.