The West Script Button

Chowa przycisk skryptów do opcji

  1. // ==UserScript==
  2. // @name The West Script Button
  3. // @namespace *
  4. // @grant none
  5. // @include http*://*.the-west.*/game.php*
  6. // @description Chowa przycisk skryptów do opcji
  7. // @version 0.0.1.20170805100807
  8. // ==/UserScript==
  9. $(document).ready(function()
  10. {
  11. var newfunction = String(EscapeWindow.open);
  12. newfunction = 'EscapeWindow.open='+newfunction+';';
  13. newfunction = newfunction.replace(/\.setSize\(240\,290\)/g, ".setSize(240, 326)");
  14. newfunction = newfunction.replace(/window\.open\(Game\.forumURL,'wnd'\+\(new Date\)\.getTime\(\)\);/g, "(window.open(Game.forumURL, 'wnd' + new Date).getTime());}],['Script', function() {TheWestApi.open();");
  15. eval(newfunction);
  16. window.setTimeout("$('#ui_scripts').css({'display' : 'none'});", 10000);
  17. });