X to Twitter Redirect

Redirect x.com to twitter.com

作者
Jared Miller
今日安裝
0
安裝總數
23
評價
1 0 1
版本
1.0
建立日期
2024-06-27
更新日期
2024-06-27
授權條款
Unlicense
腳本執行於

Replaces x with twitter:

const newURL = new URL(window.location.href);
newURL.hostname = "twitter.com";
window.location.replace(newURL.toString());