我想要一个greasemonkey脚本,它将扫描每个页面以查找域的url并为其添加一个参数
例如,如果我访问一个页面,它将扫描域为 example.com 的所有 URL 并替换example.com/abc
为example.com/abc/xyz
,如果我直接访问example.com/abc
它,它将在/xyz
其后添加。下面的代码可以做我想做的,但只有当我在example.com
// ==UserScript==
// @name Bypass uppit adds
// @include http://*example.com/*
// @run-at document-start
// ==/UserScript==
var url=window.location.pathname;
var url1=url+"xyz";
window.location.replace(url1);
我想要的是当我被推荐到该域的任何页面时,我将单击的 url 应该是最后一个。