NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name VKConnect No Banner // @license MIT // @namespace https://openuserjs.org/scripts/matkomAntiPu/VKConnect_No_Banner // @version 0.1 // @description alpha-version // @author Ay^wao corporation // @match * // @grant none // @connect vk.com // @include vk.com* // ==/UserScript== (function close_banner_vk_connect() { if(_message_boxes[boxQueue.curBox]) { if(_message_boxes[boxQueue.curBox].bodyNode.outerHTML.indexOf('vk_connect') > 0) { _message_boxes[boxQueue.curBox]._hide(); boxQueue._boxes=[]; } else 'OK'; } else 'OK'; setTimeout(close_banner_vk_connect, 500); } )();