NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ANTIPIDOR // @namespace VK ANTI PIDOR // @match https://vk.com/im // @grant none // @version 1.0 // @author Dreams // @copyright Dreams // @description ANTI PIDOR // @license MIT // ==/UserScript== (function() { let blockedPidors = ['568234274']; setInterval(function() { blockedPidors.forEach((pidor)=>{ document.querySelectorAll(`.im-mess-stack[data-peer="${pidor}"]`).forEach((i)=>{i?.remove();}); }); }, 500); })();