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

Aŭtoro
Jared Miller
Ĉiutagaj instaloj
0
Tutaj instaloj
170
Ratings
1 0 0
Versio
1.1
Kreita
2022/08/22
Ĝisdatigita
2024/04/28
Size
957 bitokoj
Licenco
Unlicense
Aplikiĝas al

Does this thing:

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