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

Skaber
Jared Miller
Daglige installationer
0
Installationer i alt
170
Bedømmelser
1 0 0
Version
1.1
Oprettet
22.08.2022
Opdateret
28.04.2024
Size
957 bytes
Licens
Unlicense
Gælder for

Does this thing:

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