Auto-name Custom EQ

sdfsdf

目前为 2014-05-22 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Auto-name Custom EQ
  3. // @namespace pbr/ance
  4. // @include http://goallineblitz.com/game/buy_custom.pl?player_id=*
  5. // @version 0.0.1.20140522062846
  6. // @description sdfsdf
  7. // ==/UserScript==
  8.  
  9. window.setTimeout( function() {
  10. var name = "Zorg Industries ZF-1";
  11. var line = document.getElementById("item_name");
  12. line.value = name;
  13. }, 100);
  14.