司机社自动跳转

访问其他域名时自动跳转到xsijishe.net

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        司机社自动跳转
// @namespace    http://tampermonkey.net/
// @version      1.0
// @author       zzx114
// @description  访问其他域名时自动跳转到xsijishe.net
// @match        *://sjs47.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    // 跳转映射表,后续可添加更多规则
    const redirectMap = {
        "sjs47.com": "xsijishe.net",
    };

    const currentHost = location.host;
    for (let sourceDomain in redirectMap) {
        if (currentHost === sourceDomain || currentHost.endsWith("." + sourceDomain)) {
            const targetDomain = redirectMap[sourceDomain];
            const newUrl = location.href.replace(sourceDomain, targetDomain);
            if (newUrl !== location.href) {
                console.log(`跳转:${location.href} → ${newUrl}`);
                location.replace(newUrl);
            }
            break;
        }
    }
})();