Greasy Fork is available in English.

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
총 설치수
154
평점
0 0 0
버전
1.1
생성
2022-08-22
갱신
2024-04-28
라이선스
Unlicense
동작 사이트

Does this thing:

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