Navegación Aleatoria

Navega aleatoriamente por la web

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

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