你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/450004-reddit-to-teddit-redirector,源站連結 點此以跳轉

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



點此查看下載連結位址https://update.greasyfork.org.cn/scripts/450004/Reddit%20to%20Teddit%20Redirector.user.js

安装此脚本?
作者
Jared Miller
日安装量
0
总安装量
173
评分
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());
})();