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
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());
})();