NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Novo chat da UOL sem avatar do UOLK // @namespace http://www.yao-chat.ml // @version 1.0 // @description Faz o novo chat da UOL (Beta) ficar sem avatar do UOLK // @author Ling Yao // @match http://batepapo.uol.com.br/beta/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; // Your code here... var disableAvatars = function(){ var style = `<style> .perfilPic { display: none !important; } </style>`; $('body').append(style); } var disableAvatarsInterval = setInterval(function(){ if(document.querySelector('#chatMessageSend')){ disableAvatars(); clearInterval(disableAvatarsInterval); } }, 100);