Greasy Fork is available in English.

Reddit Fast Auto Redirect

Auto-redirect traffic from www.reddit.com to new.reddit.com before the page loads

// ==UserScript==
// @name         Reddit Fast Auto Redirect
// @namespace    https://greasyfork.org/en/users/688917
// @version      0.8
// @description  Auto-redirect traffic from www.reddit.com to new.reddit.com before the page loads
// @run-at       document-start
// @match        *://www.reddit.com/*
// @match        *://old.reddit.com/*
// @match        *://sh.reddit.com/*
// @exclude      *://www.reddit.com/media*
// @grant        none
// @license      MIT
// ==/UserScript==

const hostname = location.hostname;
window.location.replace(window.location.href.replace(hostname, 'new.reddit.com'));