Redirects twitter.com to x.com twitter 转 x
// ==UserScript==
// @name Twitter to X Redirect
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Redirects twitter.com to x.com twitter 转 x
// @author JunFengLi666
// @match *://twitter.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 获取当前 URL
var currentUrl = window.location.href;
// 将 www.twitter.com 转换为 www.x.com
var newUrl = currentUrl.replace('twitter.com', 'x.com');
// 重定向到新 URL
window.location.replace(newUrl);
})();