网站的链接外部链接全部重定向到“您正在离开”页面。
当我复制最初发布的链接URL时,它们如下所示:
https://www.flashback.org/leave.php?u=http%3A%2F%2Fwww.swatab.com%2F%3Flang%3Den
页面HTML:
<a href="/leave.php?u=http%3A%2F%2Fwww.swatab.com%2F%3Flang%3Den"
target="_blank">http://www.swatab.com/?lang=en</a>
我想创建一个绕过 /leave.php 页面的用户脚本,并在点击时将我重定向到真实链接。
对此有简单的解决方法吗?
答案 0 :(得分:0)
这是相对标准的重定向脚本的工作。
请注意使用@run-at document-start
和location.replace
Doc 。
// ==UserScript==
// @name Flashback.org, skip the "You are now leaving" page
// @match *://www.flashback.org/leave.php*
// @grant none
// @run-at document-start
// ==/UserScript==
var targUrlEnc = location.search.replace (/\?u=/i, "");
if (targUrlEnc) {
var targUrl = decodeURIComponent (targUrlEnc);
location.replace (targUrl);
}