Greasy Fork 支持简体中文。

Disable Translation on Reddit

Redirects translated Reddit Threads to the original

// ==UserScript==
// @name        Disable Translation on Reddit
// @namespace   Violentmonkey Scripts
// @match       https://www.reddit.com/*?tl=*
// @run-at      document-start
// @license MIT
// @version     1.0
// @author      QuieselWusul
// @description Redirects translated Reddit Threads to the original
// ==/UserScript==
window.location.href = window.location.href.split("?tl=")[0]