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
قۇرۇلغان ۋاقتى
2022-08-22
يېڭىلانغان ۋاقتى
2024-04-28
Size
957 بايت
ئىجازەتنامىسى
Unlicense
قوللايدىغىنى

Does this thing:

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