NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide VKConnect terms modal // @namespace http://tampermonkey.net/ // @version 0.1 // @description Hide VKConnect terms modal // @author ELOR & PHAGLEB // @copyright 2020, ELOR & PHAGLEB (https://openuserjs.org/users/elor) // @license MIT // @match https://*.vk.com/* // @grant none // @run-at document-start // ==/UserScript== window.addEventListener("load", function (e) { boxQueue.hideAll(); window.vkConnectTermsModal.show = function() {}; console.log("VKConnect terms modal closed."); });