// ==UserScript== // @name Rock Paper Scroll // @version 0.1.5 // @description Rock, Paper, Shotgun's new design adds a horizontal scroll, for no good reason. // @author Ross Angus // @match https://www.rockpapershotgun.com/* // @grant GM_addStyle // @namespace https://greasyfork.org/users/226099 // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.removeAttribute('data-version'); GM_addStyle('.nav_main {width: auto; grid-template-columns: none;}'); })();