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

Autor
Jared Miller
Instalações hoje
0
Total de instalações
170
Avaliações
1 0 0
Versão
1.1
Criado
22/08/2022
Atualizado
28/04/2024
Tamanho
957 Bytes
Licença
Unlicense
Aplicável a

Does this thing:

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