Greasy Fork

Greasy Fork is available in English.

恢复贴吧网址

jump2.bdimg替换为tieba.baidu

目前为 2025-01-26 提交的版本,查看 最新版本

// ==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
// ==/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;
})();