您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Navega aleatoriamente por la web
当前为
// ==UserScript== // @name NAVAUTO // @namespace http://tampermonkey.net/ // @version 1.1 // @description Navega aleatoriamente por la web // @author Hector Luces // @match *://*/* // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; // Lista de sitios web para navegar aleatoriamente var sitiosWeb = [ "http://google.com", "http://facebook.com", "http://youtube.com", "http://baidu.com", "http://yahoo.com", "http://amazon.com", "http://wikipedia.org", "http://qq.com", "http://twitter.com", "http://slashdot.org", "http://google.co.in", "http://taobao.com", "http://live.com", "http://sina.com.cn", "http://yahoo.co.jp", "http://linkedin.com", "http://weibo.com", "http://ebay.com", "http://google.co.jp", "http://yandex.ru", "http://bing.com", "http://vk.com", "http://google.de", "http://instagram.com", "http://t.co", "http://msn.com", "http://amazon.co.jp", "http://tmall.com", "http://google.co.uk", "http://pinterest.com", "http://ask.com", "http://reddit.com", "http://wordpress.com", "http://mail.ru", "http://google.fr", "http://blogspot.com", "http://paypal.com", "http://onclickads.net", "http://google.com.br", "http://tumblr.com", "http://apple.com", "http://google.ru", "http://aliexpress.com", "http://sohu.com", "http://microsoft.com", "http://imgur.com", "http://google.it", "http://imdb.com", "http://google.es", "http://netflix.com", "http://gmw.cn", "http://amazon.de", "http://fc2.com", "http://360.cn", "http://alibaba.com", "http://go.com", "http://stackoverflow.com", "http://ok.ru", "http://google.com.mx", "http://google.ca", "http://amazon.in", "http://google.com.hk", "http://tianya.cn", "http://amazon.co.uk", "http://craigslist.org", "http://rakuten.co.jp", "http://naver.com", "http://blogger.com", "http://diply.com", "http://google.com.tr", "http://flipkart.com", "http://espn.go.com", "http://soso.com", "http://outbrain.com", "http://nicovideo.jp", "http://google.co.id", "http://cnn.com", "http://xinhuanet.com", "http://dropbox.com", "http://google.co.kr", "http://googleusercontent.com", "http://github.com", "http://ebay.de", "http://kat.cr", "http://bbc.co.uk", "http://google.pl", "http://google.com.au", "http://pixnet.net", "http://tradeadexchange.com", "http://popads.net", "http://googleadservices.com", "http://ebay.co.uk", "http://dailymotion.com", "http://sogou.com", "http://adnetworkperformance.com", "http://adobe.com", "http://directrev.com", "http://nytimes.com", "http://jd.com", "http://wikia.com", "http://adcash.com", "http://booking.com", "http://163.com", "http://bbc.com", "http://coccoc.com", "http://dailymail.co.uk", "http://indiatimes.com", "http://china.com", "http://dmm.co.jp", "http://chase.com", // Agrega más sitios web aquí ]; // Función para obtener un sitio web aleatorio function obtenerSitioAleatorio() { return sitiosWeb[Math.floor(Math.random() * sitiosWeb.length)]; } // Función para redireccionar a un sitio web aleatorio function navegarAleatoriamente() { var sitioAleatorio = obtenerSitioAleatorio(); console.log("Navegando a: " + sitioAleatorio); window.location.href = sitioAleatorio; } // Redireccionar a un sitio web aleatorio después de un tiempo aleatorio var tiempoEspera = Math.floor(Math.random() * (30000 - 10000)) + 10000; // Entre 10 y 30 segundos console.log("Esperando " + (tiempoEspera / 1000) + " segundos antes de la próxima navegación..."); setTimeout(navegarAleatoriamente, tiempoEspera); })();