Greasy Fork is available in English.

Reddit Old

Redirects to old.reddit.com if the user chooses to use it on Reddit's new design.

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 Old
// @namespace    https://tampermonkey.net
// @version      1.21
// @description  Redirects to old.reddit.com if the user chooses to use it on Reddit's new design.
// @author       Ondry
// @match        https://www.reddit.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function createPrompt() {
        const promptDiv = document.createElement('div');
        promptDiv.setAttribute('id', 'old-reddit-prompt');
        promptDiv.setAttribute('class', 'old-reddit-prompt');
        promptDiv.setAttribute('style', 'position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; padding: 20px; border: 2px solid black; z-index: 9999; color: black; text-align: center;');
        const promptText = document.createElement('p');
        promptText.textContent = 'Do you want to use old Reddit?';
        promptDiv.appendChild(promptText);
        const buttonContainer = document.createElement('div');
        buttonContainer.setAttribute('style', 'display: flex; justify-content: space-between; margin-top: 10px;');
        const yesButton = document.createElement('button');
        yesButton.textContent = 'Yes';
        yesButton.addEventListener('click', redirectToOldReddit);
        buttonContainer.appendChild(yesButton);
        const noButton = document.createElement('button');
        noButton.textContent = 'No';
        noButton.addEventListener('click', closePrompt);
        buttonContainer.appendChild(noButton);
        promptDiv.appendChild(buttonContainer);
        document.body.appendChild(promptDiv);
    }

    function redirectToOldReddit() {
        window.location.href = 'https://old.reddit.com';
    }

    function closePrompt() {
        const promptDiv = document.getElementById('old-reddit-prompt');
        promptDiv.parentNode.removeChild(promptDiv);
    }

    createPrompt();
})();