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
आकार
957 Bytes
License
Unlicense
यांवर लागू होते:

Does this thing:

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