bypass reddit age restriction

bypass reddit age restriction via uisng the old. instead of www.

// ==UserScript==
// @name         bypass reddit age restriction
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  bypass reddit age restriction via uisng the old. instead of www.
// @author       You
// @match        *://www.reddit.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    if (location.hostname === 'www.reddit.com') {
        const dump2 = location.href.replace('www.reddit.com', 'old.reddit.com');
        location.replace(dump2);
    }
})();