NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GGn Hide User Reviews // @version 0.1 // @updateURL https://openuserjs.org/meta/NullPhantom/GGn_Hide_User_Reviews.meta.js // @downloadURL https://openuserjs.org/src/scripts/NullPhantom/GGn_Hide_User_Reviews.user.js // @description Hides user reviews from GGn // @author NullPhantom // @match http*://*gazellegames.net/* // @grant none // @require https://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { $('[class^="box userreviews_div"]').remove(); })();