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

Fejlesztő
Jared Miller
Napi telepítések
0
Telepítések száma
170
Értékelések
1 0 0
Verzió
1.1
Létrehozva
2022.08.22.
Frissítve
2024.04.28.
Size
957 bájt
Licensz
Unlicense
Érvényes

Does this thing:

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