I don’t use Reddit anymore, but I wanted to search something that I couldn’t find anywhere. This is what I saw. After killing all the other apps, Reddit now is trying to force us to use their own spyware app.

  • MonkderDritte@feddit.de
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    2 months ago
    // ==UserScript==
    // @name        old.reddit redirect
    // @description	Makes sure you're using Good o'l Reddit
    // @license     WTFPLV2
    // @version     1.1
    // @author      TheNH813 2018, edited by me
    // @match       https://www.reddit.com/r/*
    // @match       https://www.reddit.com/user/*
    // @run-at      document-start
    // @grant       none
    // ==/UserScript==
    
    var oldReddit  = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash;
    window.location.replace (oldReddit);
    

    Edited so it still allows image preview, because old.reddit’ one is broken now.