KickThoseThings1

Kick thoses things

当前为 2015-01-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name KickThoseThings1
  3. // @namespace InGame
  4. // @include http://www.dreadcast.net/Forum/2-691-ami-du-flood-*
  5. // @version 2
  6. // @grant none
  7. // @description Kick thoses things
  8. // ==/UserScript==
  9.  
  10. $(document).ready( function() {
  11. function KickThoseThings() {
  12. $('.sexe0').parent().parent().each( function() {
  13. $(this).hide();
  14. $(this).prev().hide();
  15. });
  16. }
  17.  
  18. KickThoseThings();
  19. $(document).ajaxComplete( function() {
  20. KickThoseThings();
  21. });
  22. });