TwiitterNotes自定义样式
Twitternotes是一个通过Twitter来发布笔记的服务。
无需注册,只需要通过Twitter的账户进行登录,之后便能够在线或者是通过Twitter来发布消息了,支持中文。发布的格式为:+ 笔记内容 #标签1,标签2
可是他的样式太丑了,因此利用Stylish给它作了下美容
用Greasemonkey过滤了一些图片,换了下logo
无需注册,只需要通过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);
}
// @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);
}
本作品采用 知识共享署名-非商业性使用 2.5 中国大陆许可协议进行许可。 |