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

Yazar
Jared Miller
Günlük kurulumlar
0
Toplam kurulumlar
170
Değerlendirmeler
1 0 0
Versiyon
1.1
Oluşturulma
22.08.2022
Güncellenme
28.04.2024
Boyut
957 Bayt
Lisans
Unlicense
Geçerli

Does this thing:

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