X to Twitter Redirect

Redirect x.com to twitter.com

Автор
Jared Miller
Инсталации дневно
0
Инсталации общо
30
Рейтинг
1 0 1
Версия
1.0
Създаден
27.06.2024
Обновен
27.06.2024
Лиценз
Unlicense
Работи на

Replaces x with twitter:

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