kick betred

Make DC's windows draggable

当前为 2014-06-06 提交的版本,查看 最新版本

// ==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
// ==/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);
	});
});