X to Twitter Redirect

Redirect x.com to twitter.com

Author
Jared Miller
Daily installs
0
Total installs
40
Ratings
1 0 1
Version
1.0
Created
2024-06-27
Updated
2024-06-27
License
Unlicense
Applies to

Replaces x with twitter:

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