gpt4 book ai didi

javascript - 如何重定向到给定的一组网站中的一个?

转载 作者:行者123 更新时间:2023-11-29 22:22:53 25 4
gpt4 key购买 nike

我创建了一个用户脚本来重定向到指定的多个站点之一:

// ==UserScript==
// @id fvhfy464
// @name [udit]redirector to yahoo or google
// @version 1.0
// @namespace
// @author
// @description
// @include http://yahoo.com
// @include http://google.com
// @include http://bing.com
// @run-at document-end
// ==/UserScript==

setTimeout(function() {
window.location.href("http://yahoo.com","http://google.com","http://bing.com")
}, 4000);

但它不起作用。

(来自评论:)
我想在一个选项卡中以 4 秒的时间间隔以随机方式一个接一个地打开多个站点。它就像网站的屏幕保护程序。

它可以永远存在。要停止,我只需要关闭选项卡。而且,我将只在我希望此脚本运行的 @include 中设置那些站点。这就像照片等的屏幕保护程序。

最佳答案

将要显示的站点列表放入一个数组中。然后您可以关闭当前页面并按顺序转到下一页,或者随机选择下一页。

例如,这是一个有序的幻灯片:

// ==UserScript==
// @name Multipage, MultiSite slideshow of sorts
// @match http://*.breaktaker.com/*
// @match http://*.imageshack.us/*
// @match http://static.tumblr.com/*
// @match http://withfriendship.com/images/*
// ==/UserScript==

var urlsToLoad = [
'http://www.breaktaker.com/albums/pictures/animals/BigCat.jpg'
, 'http://img375.imageshack.us/img375/8105/bigcats34ye4.jpg'
, 'http://withfriendship.com/images/g/33769/1.jpg'
, 'http://static.tumblr.com/yd0wcto/LXQlx109d/bigcats.jpg'
];

setTimeout (GotoNextURL, 4000);

function GotoNextURL () {
var numUrls = urlsToLoad.length;
var urlIdx = urlsToLoad.indexOf (location.href);
urlIdx++;
if (urlIdx >= numUrls)
urlIdx = 0;

location.href = urlsToLoad[urlIdx];
}


以下是随机提供的相同网站:

// ==UserScript==
// @name Multipage, MultiSite slideshow of sorts
// @match http://*.breaktaker.com/*
// @match http://*.imageshack.us/*
// @match http://static.tumblr.com/*
// @match http://withfriendship.com/images/*
// ==/UserScript==

var urlsToLoad = [
'http://www.breaktaker.com/albums/pictures/animals/BigCat.jpg'
, 'http://img375.imageshack.us/img375/8105/bigcats34ye4.jpg'
, 'http://withfriendship.com/images/g/33769/1.jpg'
, 'http://static.tumblr.com/yd0wcto/LXQlx109d/bigcats.jpg'
];

setTimeout (GotoRandomURL, 4000);

function GotoRandomURL () {
var numUrls = urlsToLoad.length;
var urlIdx = urlsToLoad.indexOf (location.href);
if (urlIdx >= 0) {
urlsToLoad.splice (urlIdx, 1);
numUrls--;
}

urlIdx = Math.floor (Math.random () * numUrls);
location.href = urlsToLoad[urlIdx];
}

关于javascript - 如何重定向到给定的一组网站中的一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11346639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com