我想&vhs=1
在浏览器上每个 YouTube 视频 URL 的末尾添加参数。我曾尝试使用以下脚本,但它陷入了一个循环(不断添加&vhs=1
&vhs=1...
)。
// ==UserScript==
// @name Youtube Tape Mode
// @namespace _pc
// @match *://*.youtube.com/watch?*
// @run-at document-start
// ==/UserScript==
var oldUrlPath = window.location.pathname;
/*--- Test that "&vhs=1" is at end of URL, excepting any "hashes"
or searches.
*/
if ( ! /\&vhs=1$/.test (oldUrlPath) ) {
var newURL = window.location.protocol + "//"
+ window.location.hostname
+ oldUrlPath
+ window.location.search.replace + "&vhs=1"
+ window.location.hash
;
/*-- replace() puts the good page in the history instead of the
bad page.
*/
window.location.replace (newURL);
}
谁能提供一些关于我如何为此目的编写脚本的见解和建议?我似乎无法弄清楚如何摆脱无限循环问题。