通过 GreaseMonkey 脚本改善 Google Reader 阅读体验

August 8th, 2010 no comment

a script that improve google reader reading experience

改进 google reader 界面的 greasemonkey 脚本

February 7th, 2009 1 comment

两栏模式下的 google reader, 右边正文是固定宽度, 浪费了不少空间, 字体看起来也太小,不舒服, 每次总要把侧栏关掉再加大字体实在不便. 有了 GreaseMonkey 就方便多了. // ==UserScript== // @name Google Reader Interface Fine-Tune // @namespace kleshwong.com // @include https://www.google.com/reader/* // @include http://www.google.com/reader/* // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName(‘head’)[0]; if (!head) { return; } style = document.createElement(‘style’); style.type = ‘text/css’; style.innerHTML = css; head.appendChild(style); } addGlobalStyle(“.entry [...]