// ==UserScript== // @name kick betred // @author Ladoria // @namespace InGame // @version 0.24 // @grant none // @description Make DC's windows draggable // @match http://www.dreadcast.net/* // @require http://code.jquery.com/jquery-latest.min.js // @copyright 2012+, Ladoria // @downloadURL none // ==/UserScript== jQuery.noConflict(); $(document).ready( function() { $('img[src*=Betred].avatar').each(function() { $(this).attr('src', 'http://image.noelshack.com/fichiers/2014/23/1402040116-betred-pony.png'); }) $(document).ajaxSend( function(a,b,c) { setTimeout( function() { $('img[src*=Betred].avatar').each(function() { $(this).attr('src', 'http://image.noelshack.com/fichiers/2014/23/1402040116-betred-pony.png'); }) }, 100); }); });