Reddit Instant Auto-Translation Bypass (Minimal Version)

Remove parameter and redirect back to the original content

// ==UserScript==
// @name        Reddit Instant Auto-Translation Bypass (Minimal Version)
// @namespace   Violentmonkey Scripts
// @match       *://*.reddit.com/*
// @run-at      document-start
// @grant       none
// @version     0.1
// @license     MIT
// @author      rv1sr
// @description Remove parameter and redirect back to the original content
// ==/UserScript==
(function() {
    'use strict';
    const url = new URL(window.location.href), param = "tl";
    if (url.searchParams.has(param)) {
        url.searchParams.delete(param);
        window.location.href = url.toString();
    }
})();