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
إجمالي التثبيت
150
التقييمات
0 0 0
الإصدار
1.1
تم إنشاؤه
22-08-2022
تم تحديثه
28-04-2024
الترخيص
Unlicense
ينطبق على

Does this thing:

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