Reddit to Teddit Redirector

Redirect reddit to teddit, a free and open source alternative focused on privacy. Use with something like https://violentmonkey.github.io

Автор
Jared Miller
Установок в день
0
Всего установок
170
Оценки
1 0 0
Версия
1.1
Создано
22.08.2022
Обновлено
28.04.2024
Размер
957 байт
Лицензия
Unlicense
Работает на

Does this thing:

(function() {
    'use strict';
    const newURL = new URL(window.location.href);
    newURL.hostname = 'teddit.net';
    window.location.replace(newURL.toString());
})();