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

Author
Jared Miller
Daily installs
0
Total installs
149
Ratings
0 0 0
Version
1.1
Created
2022-08-22
Updated
2024-04-28
License
Unlicense
Applies to

Does this thing:

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