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

Autore
Jared Miller
Installazioni giornaliere
0
Installazioni totali
170
Valutazione
1 0 0
Versione
1.1
Creato il
22/08/2022
Aggiornato il
28/04/2024
Dimensione
957 Byte
Licenza
Unlicense
Applica a

Does this thing:

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