Old Reddit Mobile Reader

Make old.reddit.com mobile friendly by moving sidebar to the top and hiding some non-essential elements.

目前为 2024-12-20 提交的版本。查看 最新版本

// ==UserScript==
// @name        Old Reddit Mobile Reader
// @namespace   Violentmonkey Scripts
// @match       http://old.reddit.com/*
// @match       https://old.reddit.com/*
// @grant       none
// @version     0.1
// @author      j239872933
// @description Make old.reddit.com mobile friendly by moving sidebar to the top and hiding some non-essential elements.
// @license     MIT
// ==/UserScript==

(function () {
    'use strict';
    $('head').append('<style type="text/css">.side { float: none; } .linkinfo, .premium-banner-outer, .titlebox, .sidecontentbox  { display: none; } </style>');
})();