2025-03-28, 8:35:10 a.m.
// ==UserScript==
// @name RPS Hide Deals
// @namespace Violentmonkey Scripts
// @match https://www.rockpapershotgun.com/latest*
// @grant GM_addStyle
// @version 1.0
// @author Bellatrix
// @license MIT
// @description 2025-03-28, 8:35:10 a.m.
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('.articles li div[data-article-type="deals"] {display:none;}');
})();