NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LenovAdsRemover // @namespace LenovAdsRemover // @version 1.05 // @description Remove Ads from lenov.ru // @include http://www.lenov.ru/* // @include https://www.lenov.ru/* // @include http://lenov.ru/* // @include https://lenov.ru/* // @grant metadata // @copyright 2018, LeFoulek // @license MIT // ==/UserScript== var style = document.createElement("style"); style.innerHTML = " .rek-top, .search_box + .clearfix + .container, .wrapper > center > div { display: none !important; visibility: hidden !important; width: 0px; height: 0px !important; overflow: hidden !important; position: absolute !important; left: -99999px !important; z-index: 0 !important; }"; document.getElementsByTagName("head")[0].appendChild(style);