Greasy Fork 还支持 简体中文。

KickThoseThings1

Kick thoses things

  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. // @author Ladoria
  8. // @description Kick thoses things
  9. // ==/UserScript==
  10.  
  11. $(document).ready( function() {
  12. function KickThoseThings() {
  13. $('.sexe0').parent().parent().each( function() {
  14. $(this).hide();
  15. $(this).prev().hide();
  16. });
  17. }
  18.  
  19. KickThoseThings();
  20. $(document).ajaxComplete( function() {
  21. KickThoseThings();
  22. });
  23. });