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

Auteur
Jared Miller
Installations quotidiennes
0
Installations (total)
170
Notes
1 0 0
Version
1.1
Créé
22/08/2022
Mis à jour
28/04/2024
Taille
957 octets
Licence
Unlicense
S'applique à

Does this thing:

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