TwiitterNotes自定义样式

Twitternotes是一个通过Twitter来发布笔记的服务。
twitternotes
无需注册,只需要通过Twitter的账户进行登录,之后便能够在线或者是通过Twitter来发布消息了,支持中文。发布的格式为:+ 笔记内容 #标签1,标签2

可是他的样式太丑了,因此利用Stylish给它作了下美容
CSS for Stylish

Greasemonkey过滤了一些图片,换了下logo
// ==UserScript==
//
 @name          Twitternotes user style
//
 @namespace     http://diveintogreasemonkey.org/download/
//
 @description   force Twitternotes to use new style
//
 @include       http://twitternotes.com/*
//
 ==/UserScript==

var theImage;
theImage 
= document.getElementById('logo');
if (theImage) {
    theImage.src 
= 'http://farm3.static.flickr.com/2417/2180371328_f9f52dfcd6_o.png';


var imgAvatar = document.getElementById('profile_avatar');
if (imgAvatar) {
    imgAvatar.parentNode.removeChild(imgAvatar);
}