// ==UserScript==
// @name TamperMonkey Redirect
// @include http://tagpro-*.koalabeast.com:*
// @include http://tangent.jukejuice.com:*
// @include http://maptest*.newcompte.fr:*
// @version 1.0
// ==/UserScript==
window.location = window.location+'/?spectator=true';
这是我到目前为止的代码。但是/?spectator = true会永远添加,我希望它可以添加一次。
/?旁观者=真
(例如:tagpro-123.koalabeast.com:8000/?pectator = true)仅限URL?提前谢谢。
请注意,这不是重复,我尝试了其他链接它没有工作,所以请提供完整的代码和解释。非常感谢你!
答案 0 :(得分:-1)
if (window.location.search != '?spectator=true') {
window.location = window.location+'/?spectator=true';
}