// Yuku: Show Online Users
// Copyright (c) 2006-2007 Orbona
// Version 1.0
// Release Date: 2007-10-22
//
// See also: http://www.orbona.com/greasemonkey/
//
// Original file name: yuku_showonline.user.js
// Please reference the original file name when contacting me regarding this
// script.
//
// This software is licensed under the CC-GNU GPL:
// http://creativecommons.org/license/cc-gpl
//
// ----------------------------------------------------------------------------
// DESCRIPTION
//
// Shows the online users on a Yuku board.  Useful when the board admins have
// "hidden" this information.
// ----------------------------------------------------------------------------

// ==UserScript==
// @name            Yuku: Show Online Users
// @description     Shows the online users on a Yuku messageboard
// @namespace       http://www.orbona.com/greasemonkey/
// @include         http://*.yuku.com/*
// ==/UserScript==

//http://whatever.yuku.com/domain/cssprofilelinks/skin_scope/local/skin_id/5/ver/38/t/Domain-CSS-File.css?rev=boardid

window.addEventListener("load", function() { GM_addStyle(".whosonline-box {display: block }\n.views {display: table-cell}"); }, false);
