Nucleo Robot TprenD

TprenD likea todos los shouts del canal Global (v6)

  1. // ==UserScript==
  2. // @name Nucleo Robot TprenD
  3. // @namespace TprenD - Robot programado para amar sin condiciones
  4. // @version 1.3
  5. // @description TprenD likea todos los shouts del canal Global (v6)
  6. // @author by @kchamat
  7. // @match https://classic.taringa.net/TprendMod*
  8. // @include https://classic.taringa.net/cuenta
  9. // @exclude https://classic.taringa.net/*/siguiendo/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. // ---- Para utilizarlo con otra cuenta debe cambiar la palabra TPRENDMOD por su Nick de Usuario y el numero de user_id por el id de su cuenta
  14. // ---- si desconoce el id de su cuenta ingrese en https://api.taringa.net/user/nick/view/SU_PROPIO_NICK
  15.  
  16. (function() {
  17. 'use strict';
  18. var user_nick="TprendMod";
  19. var user_id="29024560";
  20. var segundos=150;
  21. window.stop();
  22. function getParameterByName(name) {
  23. name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
  24. var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
  25. results = regex.exec(location.search);
  26. return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
  27. }
  28. var nro_page = parseInt(getParameterByName('pagina'))+1;
  29. if (isNaN(nro_page)){
  30. nro_page=0;
  31. }
  32. if (nro_page>80){
  33. nro_page=0;
  34. }
  35.  
  36. // funcion redirigir a tal url en 10 segundos
  37. function redirigir_a_en(url,seg) {
  38. var a = document.createElement("a");
  39. a.href = url;
  40. setTimeout(function() {
  41. a.click();
  42. }, seg*1000);
  43.  
  44. }
  45. var url='https://classic.taringa.net/'+user_nick+'?pagina='+nro_page;
  46. redirigir_a_en(url,segundos);
  47.  
  48. $.getJSON("https://api.taringa.net/shout/public/view", function(data) {
  49. $.each(data, function(i, item) {
  50. var id = item.id;
  51. var owner = item.owner.id;
  52. $.ajax({
  53. url: '/ajax/shout/vote',
  54. type: 'post',
  55. dataType: 'json',
  56. data: {
  57. owner: owner,
  58. uuid: id,
  59. score: 1
  60. },
  61. });
  62. });
  63. });
  64. //Seguir usuarios desde nro_page
  65. var urlapi="https://api.taringa.net/user/followers/view/"+user_id+"?trim_user=true&count=30&page="+nro_page;
  66. //alert(urlapi);
  67. $.getJSON("https://api.taringa.net/user/followers/view/"+user_id+"?trim_user=true&count=30&page="+nro_page, function(data) {
  68. $.each(data, function(nro_item2,user2) {
  69. var id = user2;
  70. notifica.ajax(Array("action=follow","type=user","obj=" + id),null,null,true,false);
  71. });
  72. });
  73. new Audio('https://www.soundjay.com/button/sounds/button-44.mp3').play();
  74. function abrirEnPestana(url) {
  75. var a = document.createElement("a");
  76. a.target = "_al_lado";
  77. a.href = url;
  78. a.click();
  79. }
  80. var nedge='https://classic.taringa.net/'+user_nick+'/siguiendo/'+(nro_page-1);
  81. abrirEnPestana(nedge);
  82. })();

QingJ © 2025

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