FollowAll (LincesX)

Seguir a usuarios recomendados por el MI de LincesX

  1. // ==UserScript==
  2. // @name FollowAll (LincesX)
  3. // @namespace https://greasyfork.org/en/users/243179-kchamat
  4. // @version 0.11
  5. // @description Seguir a usuarios recomendados por el MI de LincesX
  6. // @author Autofollow by @kchamat based on @Cazador4ever CazaTools
  7. // @match http*://lincesx.ga/mi/*
  8. // @include http*://lincesx.ga/mi/
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function($) {
  13. 'use strict';
  14. function ocultar(objeto){
  15. var styles = objeto+'{display:none; margin-top:5000px; }';
  16. var styleSheet = document.createElement("style");
  17. styleSheet.type = "text/css";
  18. styleSheet.innerText = styles;
  19. document.head.appendChild(styleSheet)
  20. }
  21. function seguir(){
  22. $(".zebrea").children(".floatR").children(".boto.gris").click();
  23. }
  24. seguir();
  25.  
  26. setTimeout(function() {
  27. location.reload();
  28. }, 1000);
  29. //ocultar("div#mydialog");
  30. ocultar("div#mask");
  31. })(jQuery);