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

Maker
Jared Miller
Dagelijks aantal installaties
0
Totaal aantal installaties
170
Beoordelingen
1 0 0
Versie
1.1
Gemaakt op
22-08-2022
Bijgewerkt op
28-04-2024
Grootte
957 bytes
Licentie
Unlicense
Wordt toegepast op

Does this thing:

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