Reddit Render Compact 2023

a way to render the reddit compact page

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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;
    }


})();