サイボウズのデザインカスタマイズ

サイボウズのデザインカスタマイズするTrixie互換スクリプト
自分はSleipnirで使ってます
つーかサイボウズの中の人!デザインもっと変えさせてよ!


以下をコピペして *.user.jp って名前で保存して読み込んじゃってよね
@includeのURLは自分とこのサイボウズに設定するといいよ


// ==UserScript==
// @name cybozu-styler
// @namespace http://d.hatena.ne.jp/wang-zhi/
// @description change cybozu style sheet
// @include http://127.0.0.1/サイボウズのパス/*
// @exclude
// ==/UserScript==

(function()
{
var body = document.getElementsByTagName('body')[0];

// title変更
document.title = '= C*Y*B*O*Z*U =';

// サイボウズのデザインcssを無効化
if (document.getElementsByTagName('LINK')[1]) {
document.getElementsByTagName('LINK')[1].setAttribute('href', null);
}

// ここからスタイルシート
insetRule('*', 'padding:0; margin:0;');
insetRule('body', 'background-color:#000; color:#444');
insetRule('a:link', 'color:#66F; text-decoration:none;');
insetRule('a:visited', 'color:#66F; text-decoration:none;');
insetRule('a:active', 'color:#66F; text-decoration:none;');
insetRule('a:hover', 'color:#6F6; text-decoration:none;');
insetRule('a img', 'border: 0px');
insetRule('div', 'background-color:#000; color:#888');
insetRule('table tr td th', 'background-color:#000; color:#888');
insetRule('.calendar', 'border-collapse:collapse; background-color:#000; color:#888');
insetRule('.calendar td', 'padding:2px; background-color:#222; color:#888');
insetRule('.borderTable', 'border-collapse:collapse; background-color:#000; color:#888');
insetRule('.borderTable td', 'padding:2px; background-color:#222; color:#888');
insetRule('.dataList th', 'color:#000');

// 以下style追加するやつ
function insetRule(selector, declarations) {
var sheets=document.styleSheets;
if (sheets.length) {
var tSheet=sheets[sheets.length-1];
if (document.all) {
tSheet.addRule(selector,declarations);
} else {
tSheet.insertRule(selector+"{"+declarations+"}",tSheet.cssRules.length);
}
}
}
})();

っていうかさ
はてなTシャツ欲しい!
超欲しい!