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
Instalaciones diarias
0
Instalaciones totales
150
Calificaciones
0 0 0
Versión
1.1
Creado
22/8/2022
Actualizado
28/4/2024
Licencia
Unlicense
Funciona en

Does this thing:

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