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

Penulis
Jared Miller
Pemasangan harian
0
Total pemasangan
170
Nilai
1 0 0
Versi
1.1
Dibuat
22 Agustus 2022
Diperbarui
28 April 2024
Size
957 Byte
Lisensi
Unlicense
Berlaku untuk

Does this thing:

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