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

Δημιουργός
Jared Miller
Ημερήσιες εγκαταστάσεις
0
Σύνολο εγκαταστάσεων
170
Βαθμολογίες
1 0 0
Έκδοση
1.1
Δημιουργήθηκε την
22/08/2022
Ενημερώθηκε την
28/04/2024
Μέγεθος
957 Bytes
Άδεια
Unlicense
Εφαρμόζεται σε

Does this thing:

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