正如标题所述,我想编写一个脚本,以向浏览器地址栏中的现有url添加某些参数。
// ==UserScript==
// @name RDS
// @version 1
// @grant none
// @include *://webdocument.*/file/*
// @exclude *://webdocument.*/file/*&hsequence*
// ==/UserScript==
if (webLink.indexOf("webdocument") > -1) {
document.location.href = document.location.href + "&hsegment=2";
}
但这并没有给我想要的结果。它确实可以工作,但重定向时间几乎为10秒。大多数情况下,脚本根本不起作用。有没有其他方法可以做到这一点?
我只想在输入http://webdocument.com/file/ *时在URL末尾添加“&hsegment = 2”。因此,输出网址应类似于http://webdocument.com/file/ *&hsegment = 2