Script Details
File Name: yuku_showonline.user.js
Description
Sometimes, board admins like to hide things I find useful. For example, I like to know who's online- it gives me a better idea of when my posts will be answered. I also like to know how many views a post has. So, this script shows the "online users" section and the "views" column for Yuku Boards.
Script Source
// 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);