bw-text-rapidpanel

http://www.bloodyworld.com

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name           bw-text-rapidpanel
// @description    http://www.bloodyworld.com
// @include http://www.bloodyworld.com/*
// @exclude http://www.bloodyworld.com/xfn/*
// @exclude http://www.bloodyworld.com/xfn2/*
// @version 0.0.1.20150604004702
// @namespace https://greasyfork.org/users/12000
// ==/UserScript==
// (c) Anton Fedorov aka DataCompBoy, 2006-2007
// Clan <The Keepers of Balance>.

  window.opera.defineMagicFunction(
	'RP_ajaxCompleteUse',
	function (real, thisObject) {
	  var content = '<div style="margin: 0px; padding: 0px; position: absolute; z-index: 100; right: 10px; top: 0;">';
	  content += '<table style="border: 1px solid blue" border="0" cellpadding="0">';
	  for ( var i = 1; i < RP_slots.length; i++) {
		var el = RP_slots[i];
		var num_slot = i;
		if (!((i-1) % 4)) content += '<tr>';
		if (el) {
		  if (el.item_type=='complete') {
			var image_src=RP_layout_url_all+'/subject/rapid/shlem' + el.image + '.gif';
		  } else {
			var image = el.image.replace(/01\.gif/, "00.gif");
			var image_src = RP_layout_url_all+'/subject' + image;
		  }
		  var onclick = "RP_useSlot(" + el.slot + ")";
		  var comment_alt = num_slot;
		  var comment_title = 'Slot ' + num_slot + ': ' + el.name + '';
		  content += '<td style="width: 20; height: 20;" id="slot_'
					 + num_slot + '"><img onclick="' + onclick
					 + ';" src="' + image_src + '" alt="' + comment_alt + '" title="' + comment_title + '" border="0"></td>';
		} else {
		  content += '<td style="width: 20; height: 20;" id="slot_'
					 + num_slot + '"><img src="'+RP_layout_url_all+'/subject/defaults/ge-spell.gif"></td>';
		}
	  }
	  content += '</tr></table></div>';
	  $('RP_use').innerHTML = content;
	}
  );

  window.opera.addEventListener('AfterEvent.load',function(e){
	if( e.event.target instanceof Document ) {
	  openMenu();
	}
  },false);