VK Hide Stikers

ВК убрать стикеры (в диалогах)

// ==UserScript==
// @name         VK Hide Stikers
// @namespace    http://tampermonkey.net/
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js
// @version      0.1
// @description  ВК убрать стикеры (в диалогах)
// @author       You
// @match        https://vk.com/*
// @icon         https://www.google.com/s2/favicons?domain=telegram.org
// @grant        none
// @license MIT
// ==/UserScript==


setInterval(function(){
    $('.im_sticker_row').css('display', 'none');
}, 25);