NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Masha for Wofh Forum // @namespace http://tampermonkey.net/ // @version 1.5 // @description Позволяет скрывать пирожки кликом мыши на форуме Путей Истории // @author Regis // @match https://ruforum.waysofhistory.com/ // @grant unsafeWindow // @license MIT // ==/UserScript== (function() { 'use strict'; var $ = unsafeWindow.jQuery; $(document).on('click', '.reward46', function () { $(this).removeClass('reward46'); }); })();