RimoをBloglinesにくっつける

単にウザかった。今は反省してWiiで再生させてる。

// ==UserScript==
// @name           miniRimo
// @namespace      http://fuba.s7.xrea.com/
// @description    Append Rimo on Bloglines
// @include        http://www.bloglines.com/myblogs_subs*
// ==/UserScript==

(function() {
    var newiframe = document.createElement('iframe')
    newiframe.src = "http://rimo.tv/"
    newiframe.setAttribute(
        'style',
        "position:fixed;width:240px;height:160px;z-index:10000;left:0;bottom:0;"
    );
    document.body.appendChild(newiframe);
})();