Greasy Fork

Greasy Fork is available in English.

百度贴吧域名重定向

将百度贴吧的其他域名重定向至“tieba.baidu.com”。

目前为 2023-10-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         百度贴吧域名重定向
// @namespace    http://greasyfork.icu/users/1204387
// @version      0.1.2
// @description  将百度贴吧的其他域名重定向至“tieba.baidu.com”。
// @author       Gentry Deng
// @match        http*://182.61.201.157/*
// @match        http*://*.tieba.baidu.com/*
// @match        http*://www.tieba.com/*
// @exclude      http*://*.bdimg.com/safecheck/*
// @icon         https://tb3.bdstatic.com/public/icon/favicon-v2.ico
// @grant        none
// @run-at       document-start
// @license      MIT
// @homepage     http://greasyfork.icu/scripts/478318
// @supportURL   http://greasyfork.icu/scripts/478318/feedback
// ==/UserScript==

(function () {
    'use strict';

    if (location.hostname != "tieba.baidu.com") {
        window.location.hostname = "tieba.baidu.com";
    }
})();