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
1日のインストール数
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());
})();