此脚本的目的是将置顶动漫或者电视剧中默认的pro网址域名改为me
// ==UserScript==
// @name bt之家重定向
// @namespace https://viayoo.com/
// @version 0.2
// @description 将1lou.pro域名重定向到1lou.me
// @author You
// @run-at document-start
// @match *://www.1lou.pro/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取当前URL
const currentUrl = window.location.href;
// 替换域名并保留路径、参数和锚点
const targetUrl = currentUrl.replace(
/^https?:\/\/www\.1lou\.pro(.*)/i,
"http://www.1lou.me$1"
);
// 仅在URL变化时重定向
if (targetUrl !== currentUrl) {
window.location.replace(targetUrl);
}
})();