Greasy Fork is available in English.
访问 jump2.bdimg.com 时自动重定向到 tieba.baidu.com
// ==UserScript==
// @name BDImg jump2.bdimg.com重定向到百度贴吧tieba.baidu.com
// @namespace http://tampermonkey.net/
// @version 1.2
// @description 访问 jump2.bdimg.com 时自动重定向到 tieba.baidu.com
// @author life9211
// @match https://jump2.bdimg.com/*
// @match https://jump.bdimg.com/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取当前URL
const currentUrl = window.location.href;
// 创建新的URL对象
const url = new URL(currentUrl);
// 修改主机名
url.hostname = 'tieba.baidu.com';
// 添加延迟后重定向
setTimeout(() => {
window.location.replace(url.toString());
}, 1000);// 1秒延迟,可以根据需要调整
})();