Auto:Follow-Unfollow V6

Follow a los que siguen y Unfollow a quienes no

  1. // ==UserScript==
  2. // @name Auto:Follow-Unfollow V6
  3. // @version 0.9
  4. // @description Follow a los que siguen y Unfollow a quienes no
  5. // @author by @kchamat based on @Cazador4ever CazaTools
  6. // @match https://classic.taringa.net/*/siguiendo/*
  7. // @include https://classic.taringa.net/*/siguiendo
  8. // @grant none
  9. // @namespace https://gf.qytechs.cn/users/243179
  10. // ==/UserScript==
  11.  
  12. (function($) {
  13. 'use strict';
  14. // ---- Para utilizarlo con otra cuenta debe cambiar a continuación su Nick de Usuario y el numero de user_id por el id de su cuenta
  15. var user_nick="Kchamat";
  16. // ---- si desconoce el id de su cuenta ingrese en https://api.taringa.net/user/nick/view/SU_PROPIO_NICK
  17. var user_id="78902"
  18. var nedge=Math.floor((Math.random() * 50 + 2));
  19. setTimeout(function() {
  20. var nro_page =Math.floor((Math.random() * 5));
  21. devuelve_follow(nro_page);
  22. }, 500);
  23. $('head').append('<meta http-equiv="refresh" content="30,https://classic.taringa.net/Kchamat/siguiendo/'+nedge+'">' );
  24. //funcion seguir
  25. function devuelve_follow(nro_page) {
  26. $.getJSON("https://api.taringa.net/user/followers/view/"+user_id+"?trim_user=true&count=5&page="+nro_page, function(data) {
  27. $.each(data, function(nro_item2,user2) {
  28. var id = user2;
  29. notifica.ajax(Array("action=follow","type=user","obj=" + id),null,null,true,false);
  30. });
  31. });
  32. }
  33. //funcion Quitar los que me siguen
  34. function quitar(){
  35. $(".mesigue").each(function(){
  36. $(this).next().children().removeClass('following');
  37. $(this).next().children().removeClass('unfollowing');
  38. });
  39. }
  40. quitar();
  41. $(".following:first").each(function(){
  42. $(this).mouseover();
  43. });
  44. setTimeout(function() {
  45. $(".btn.r.unfollowing").click();
  46. }, 1000);
  47. })(jQuery);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址