AH-Chatcolor

Eine Farbauswahlbox für den Chat des Browsergames Aquahaze. Orginal Idee von BaLLeRTroeTe, überarbeitet von Nugorra

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        AH-Chatcolor
// @author      Nugorra
// @namespace   ahchatcolor
// @description Eine Farbauswahlbox für den Chat des Browsergames Aquahaze. Orginal Idee von BaLLeRTroeTe, überarbeitet von Nugorra
// @include     http://world*.aquahaze.de/*
// @version     1.1
// @grant       none
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==
var frameWidth = $('#wideframe').width();
var divStyle = {padding: '10px', position: 'relative'};
var inputStyle = {width:'370px',margin:'0 10px 0 0'};
var spanStyle = {position:'absolute',top:'15px',right:'10px'};

$(document).ready(function(){
	$('#frame').after('<div id="colorDiv"></div>');
	$('#colorDiv').append('<input id="colorPicker" type="color" />' );
	$('#colorDiv').append('<span class="deletText">X</span>');
	$('#colorDiv').css(divStyle);
	$('#colorPicker').css(inputStyle);
	$('.deletText').css(spanStyle);
	
	$('#colorPicker').change(function(){
		var farbe = $('#colorPicker').val();
		$('form input[type=text]').val('/color ' + farbe);
	});
	$('.deletText').click(function(){
		$('form input[type=text]').val('');
	});
	
});