Tampermonkey というuserScript用
これだよ、この右上の次へ 前へボタン。これが欲しい!

File:Google Reader interface.png - Wikipedia, the free encyclopedia より。一部加工
次へをポチポチ押しながらRSS消化していくのが日課だったのに、どこのrssリーダーにも無いんだから困る
tt-rss
// ==UserScript==
// @name TT-Rssにボタン追加
// @match http://*
// ==/UserScript==
var root = document.createElement("div");
var nextButton = document.createElement("button");
var prevButton = document.createElement("button");
nextButton.innerText="次";
prevButton.innerText="前";
nextButton.addEventListener("click",function(){moveToPost('next', true);});
prevButton.addEventListener("click",function(){moveToPost('prev', true);});
root.appendChild(prevButton);
root.appendChild(nextButton);
document.querySelector("#toolbar>.dijitToolbar").appendChild(root);
でも次へボタンをポチポチ押したけど、快適さが違う気がする・・・ GoogleReaderの挙動とかもう詳しく覚えてないしなあ。
有料でいいから再公開してくれ
