// ==UserScript== // @name remove shapka // @namespace http://tampermonkey.net/ // @version 0.2 // @description Remove specific line with class "svgIcon nyCapIcon" // @author You // @match https://zelenka.guru/* // @match https://lzt.market/* // @match https://lolz.guru/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var elementToRemove = document.querySelector('div.tournament-block'); if (elementToRemove) { elementToRemove.remove(); } })();