Force old reddit and no translation

Force old reddit by redirecting to ps.reddit.com and remove translation parameter

// ==UserScript==
// @name        Force old reddit and no translation
// @description Force old reddit by redirecting to ps.reddit.com and remove translation parameter
// @namespace   Violentmonkey Scripts
// @match       https://www.reddit.com/*
// @match       https://reddit.com/*
// @grant       none
// @run-at      document-start
// @version     1.1
// @author      stubborn719
// @license     MIT
// @description 4/9/2025, 2:30:24 AM
// ==/UserScript==

(function () {
    'use strict';
    const url = new URL(window.location.href);
    url.searchParams.delete('tl');
    url.hostname = 'ps.reddit.com';
    window.location.href = url.href;
})();