NAVAUTO

Navega aleatoriamente por la web

当前为 2024-03-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name NAVAUTO
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Navega aleatoriamente por la web
  6. // @author Hector Luces
  7. // @match *://*/*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Lista de sitios web para navegar aleatoriamente
  16. var sitiosWeb = [
  17. "http://google.com",
  18. "http://facebook.com",
  19. "http://youtube.com",
  20. "http://baidu.com",
  21. "http://yahoo.com",
  22. "http://amazon.com",
  23. "http://wikipedia.org",
  24. "http://qq.com",
  25. "http://twitter.com",
  26. "http://slashdot.org",
  27. "http://google.co.in",
  28. "http://taobao.com",
  29. "http://live.com",
  30. "http://sina.com.cn",
  31. "http://yahoo.co.jp",
  32. "http://linkedin.com",
  33. "http://weibo.com",
  34. "http://ebay.com",
  35. "http://google.co.jp",
  36. "http://yandex.ru",
  37. "http://bing.com",
  38. "http://vk.com",
  39. "http://google.de",
  40. "http://instagram.com",
  41. "http://t.co",
  42. "http://msn.com",
  43. "http://amazon.co.jp",
  44. "http://tmall.com",
  45. "http://google.co.uk",
  46. "http://pinterest.com",
  47. "http://ask.com",
  48. "http://reddit.com",
  49. "http://wordpress.com",
  50. "http://mail.ru",
  51. "http://google.fr",
  52. "http://blogspot.com",
  53. "http://paypal.com",
  54. "http://onclickads.net",
  55. "http://google.com.br",
  56. "http://tumblr.com",
  57. "http://apple.com",
  58. "http://google.ru",
  59. "http://aliexpress.com",
  60. "http://sohu.com",
  61. "http://microsoft.com",
  62. "http://imgur.com",
  63. "http://google.it",
  64. "http://imdb.com",
  65. "http://google.es",
  66. "http://netflix.com",
  67. "http://gmw.cn",
  68. "http://amazon.de",
  69. "http://fc2.com",
  70. "http://360.cn",
  71. "http://alibaba.com",
  72. "http://go.com",
  73. "http://stackoverflow.com",
  74. "http://ok.ru",
  75. "http://google.com.mx",
  76. "http://google.ca",
  77. "http://amazon.in",
  78. "http://google.com.hk",
  79. "http://tianya.cn",
  80. "http://amazon.co.uk",
  81. "http://craigslist.org",
  82. "http://rakuten.co.jp",
  83. "http://naver.com",
  84. "http://blogger.com",
  85. "http://diply.com",
  86. "http://google.com.tr",
  87. "http://flipkart.com",
  88. "http://espn.go.com",
  89. "http://soso.com",
  90. "http://outbrain.com",
  91. "http://nicovideo.jp",
  92. "http://google.co.id",
  93. "http://cnn.com",
  94. "http://xinhuanet.com",
  95. "http://dropbox.com",
  96. "http://google.co.kr",
  97. "http://googleusercontent.com",
  98. "http://github.com",
  99. "http://ebay.de",
  100. "http://bbc.co.uk",
  101. "http://google.pl",
  102. "http://google.com.au",
  103. "http://pixnet.net",
  104. "http://tradeadexchange.com",
  105. "http://popads.net",
  106. "http://googleadservices.com",
  107. "http://ebay.co.uk",
  108. "http://dailymotion.com",
  109. "http://sogou.com",
  110. "http://adnetworkperformance.com",
  111. "http://adobe.com",
  112. "http://nytimes.com",
  113. "http://jd.com",
  114. "http://wikia.com",
  115. "http://adcash.com",
  116. "http://booking.com",
  117. "http://163.com",
  118. "http://bbc.com",
  119. "http://coccoc.com",
  120. "http://dailymail.co.uk",
  121. "http://indiatimes.com",
  122. "http://china.com",
  123. "http://dmm.co.jp",
  124. "http://chase.com",
  125. // Agrega más sitios web aquí
  126. ];
  127.  
  128. // Función para obtener un sitio web aleatorio
  129. function obtenerSitioAleatorio() {
  130. return sitiosWeb[Math.floor(Math.random() * sitiosWeb.length)];
  131. }
  132.  
  133. // Función para redireccionar a un sitio web aleatorio
  134. function navegarAleatoriamente() {
  135. var sitioAleatorio = obtenerSitioAleatorio();
  136. console.log("Navegando a: " + sitioAleatorio);
  137. window.location.href = sitioAleatorio;
  138. }
  139.  
  140. // Redireccionar a un sitio web aleatorio después de un tiempo aleatorio
  141. var tiempoEspera = Math.floor(Math.random() * (30000 - 10000)) + 10000; // Entre 10 y 30 segundos
  142. console.log("Esperando " + (tiempoEspera / 1000) + " segundos antes de la próxima navegación...");
  143. setTimeout(navegarAleatoriamente, tiempoEspera);
  144.  
  145.  
  146. })();