// ==UserScript== // @name Delete_Chat_by_el9in // @namespace Delete_Chat_by_el9in // @version 0.1 // @description Delete Chat - Lolz // @author el9in // @match https://zelenka.guru/* // @match https://lolz.guru/* // @match https://lzt.market/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru // @grant unsafeWindow // @license el9in // @downloadURL none // ==/UserScript== (function() { 'use strict'; const element = document.getElementById('ConversationsMenu_Counter'); if (element) element.remove(); })();