JSONPã使ã£ããã ãã©ã¹ã¯ãªããã®ãã¼ãã¾ã§ã®é 延ãã©ãããããèããçµæinnerHTMLã§æ¸ãæããæ¹æ³ã«ãã¾ããããªã«ããã¾ãæ¹æ³ããã£ããæãã¦ãã ããã
ã¯ã¦ã¹ã¿ã®APIã®ãã°ã ã¨æããã ãã©ã¹ã¿ã¼ã®æ°ã0ã®URLã ã¨404ãè¿ã£ã¦ãããã®ã§ã¨ã©ã¼ãåºã¾ããä¾ãã°ãhttp://s.hatena.ne.jp/blog.json/http://www.example.com/ã¨ããä¿®æ£ãé¡ããã¾ãï¼ï¼id:hatenastar
ãã¨ãScriptLoaderãLDRã®å é¨ã§ä½¿ããã¦ããªãããã ã¨æããã©ãDEBUGãtrueã ã£ãã®ã§falseã«ããã
// ==UserScript== // @name LDR with Hatena::Star count // @namespace http://shinten.info/ // @include http://reader.livedoor.com/reader/ // ==/UserScript== // // based on http://la.ma.la/blog/diary_200610182325.htm // (function () { var w = (typeof unsafeWindow == 'undefined') ? window : unsafeWindow; var api = 'http://s.hatena.ne.jp/blog.json/'; with (w) { ScriptLoader.DEBUG = false; channel_widgets.add('hs_counter', function(feed){ var loader = new ScriptLoader(api + feed.channel.link); loader.get({}, function (obj) { if ($('hs-' + feed.subscribe_id)) $('hs-' + feed.subscribe_id).innerHTML = obj.star_count; }); return [ '<img src="http://s.hatena.ne.jp/images/star.gif">', '<span style="color:#f4b128;font-weight:bold;" id="hs-', feed.subscribe_id, '">0</span>' ].join(''); }); } })();