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