Posting a new version here, the other one had some unwanted effects ^^
HV_Battle_Compact.css ( 6.75k )
Number of downloads: 112
HV_Battle_Compact_Chrome.zip ( 1.48k )
Number of downloads: 64This Modifies the battle interface to reduce used space. Should be nice for multitasking and, even if it was not intended at first, mobile playing...
I fixed some derps while I was at it:
- the item panel was relocated to make the use more efficient
- the training level disappearance has been cleared too... (IMG:[
invalid]
style_emoticons/default/laugh.gif)
Monsters are still disposed like this:
1 2
3 4
5 6
7 8
9 10
Script for installing the .css directly, made by djackallstar
CODE
// ==UserScript==
// @name HV Battle Compact
// @updateURL about:blank
// @grant GM_getResourceURL
// @resource hv_battlecompact http://forums.e-hentai.org/index.php?act=Attach&type=post&id=68301
// @include http://hentaiverse.org/*
// ==/UserScript==
var cssId = 'hv_battlecompact'
if(!document.getElementById(cssId)) {
var link = document.createElement('link')
link.id = cssId
link.rel = 'stylesheet'
link.type = 'text/css'
link.media = 'all'
link.href = GM_getResourceURL('hv_battlecompact')
document.head.appendChild(link)
}
This post has been edited by boulay: Aug 6 2015, 22:11