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바이트
라이선스
Unlicense
적용 사이트

Does this thing:

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