NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Desativa emoticons automáticos do novo chat da UOL (beta) // @namespace http://www.yao-chat.ml // @version 1.0 // @description Faz o novo chat da UOL (beta) não substituir automáticamente emoticons por imagens. // @author Ling Yao // @match http://batepapo.uol.com.br/beta/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; // Your code here... var noMoreEmoticons = function(){ angular.element($('#chatMessageSend')).scope().parseToClient = function(message, id){return}; } var noMoreEmoticonsInterval = setInterval(function(){ if(document.querySelector('#chatMessageSend')){ noMoreEmoticons(); clearInterval(noMoreEmoticonsInterval); } }, 100);