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

Skapare
Jared Miller
Dagliga installationer
0
Totala installationer
170
Betyg
1 0 0
Version
1.1
Skapad
2022-08-22
Uppdaterad
2024-04-28
Size
957 Bytes
Licens
Unlicense
Gäller för

Does this thing:

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