NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @version 1 // @name PikaPassBarHide // @author Veon // @description Hide change password bar for pikabu // @match *://pikabu.ru/* // @require http://code.jquery.com/jquery-3.3.1.min.js // @license MIT // ==/UserScript== (function () { var block = $( "div:contains('целях защиты аккаунта поменяйте пароль')" ); block[2].style.display = "none"; }());