Greasy Fork is available in English.

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

Autor
Jared Miller
Dnevne instalacije
0
Ukupnih instalacija
168
Ocjene
1 0 0
Verzija
1.1
Stvoreno
22.08.2022.
Ažurirano
28.04.2024.
Size
957 bajtova
Licenza
Unlicense
Primjenjuje se

Does this thing:

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