// ==UserScript== // @name 恢复贴吧网址 // @namespace https://github.com/CandyTea // @license GPLv3 // @version 1.0 // @description jump2.bdimg替换为tieba.baidu // @author me // @match https://jump2.bdimg.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 获取当前页面的URL let currentUrl = window.location.href; // 替换'jump2.bdimg'为'tieba.baidu' let newUrl = currentUrl.replace('jump2.bdimg', 'tieba.baidu'); // 跳转到新的URL window.location.href = newUrl; })();