Reddit Render Compact 2023

a way to render the reddit compact page

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name     	Reddit Render Compact 2023
// @version  	1.1
// @license     MIT
// @description  a way to render the reddit compact page
// @match    	https://*.reddit.com/*
// @namespace https://greasyfork.org/users/1163486
// ==/UserScript==

(function() {
    'use strict';
    const href = window.location.href;

    // redirected to old.reddit.com first if not a gallery page or media query
    if (href.startsWith("https://www.reddit.com/") &&
        !href.includes("/gallery") &&
        !href.includes("/media?")) {
        const oldUrl = href.replace("https://www.reddit.com/", "https://old.reddit.com/");
        window.location.href = oldUrl;
    }


})();