#pragma section-numbers off [[TableOfContents]] = 概要 = JavaScriptにより作成されたブックマークより呼びだすための小物ツール類 たいがい自分にしか役にたたなかったりする。 = 公式に提供されている物 = [http://www.hatena.ne.jp/tool/bookmarklet ブックマークレット - はてな] [http://www.rememberthemilk.com/help/answers/quickadd/ Remember The Milk - Help / FAQ / Quick Add] [http://www.google.co.jp/reader/ Google リーダー]は設定の追加機能にBookMarkletを公開している = MoinMoin = == Amazon へのリンク作成 == {{{[[ASIN ASIN番号 タイトル]]}}}の形式になります。このMoinMoinではカスタマイズしているのでこれがamazonへのリンクになります Firefox,Camino用 {{{ javascript:(function(){var asin=document.handleBuy.ASIN.value;var t=document.title;var ti=t.indexOf(':');var title=t.substring(ti+1);var link='[[ASIN('+asin+''+title+')]]';void (prompt('',link));})();undefined; }}} IE用 {{{ javascript:(function(){var asin=document.handleBuy.ASIN.value;var t=document.title;var ti=t.indexOf(':');var title=t.substring(ti+1);var link='[[ASIN('+asin+''+title+')]]';void window.clipboardData.setData('text',link);})();undefined; }}} ## {{{ ##javascript:(function(){var u=document.location.href;var ai=u.indexOf('ASIN');var asin=u.substring(ai+5,ai+15);var t=document.title;var ti=t.indexOf(':');var title=t.substring(ti+1);var link='[[ASIN('+asin+' '+title+')]]';void window.clipboardData.setData('text',link);})() ##}}} == 普通のリンク作成 == {{{[URI タイトル」}}} 形式になります。MoinMoinではリンクになります。 Firefox,Camino用 {{{ javascript:(function(){var u=document.location.href;var t=document.title;var link='['+u+' '+t+']';void (prompt('',link));})();undefined; }}} IE用 {{{ javascript:(function(){var u=document.location.href;var t=document.title;var link='['+u+' '+t+']';void window.clipboardData.setData('text',link);})();undefined; }}} = メモ用のリンク作成 = {{{ javascript:(function(){var u=document.location.href;var t=document.title;var link='* '+t+'\n'+u+'';void window.clipboardData.setData('text',link);})() }}} = はてな = == はてぶコメントを参照する == {{{ javascript:(function(){w=window,f='http://b.hatena.ne.jp/entry/',p=document.URL,u=f+p;a=function(){if(!w.open(u,'t','toolbar=0,scrollbars=1,resizable=1,status=1,width=520,height=600'))l.href=u;};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}void(0)})() }}} = Google = == Google Bookmarks に登録 == かなりわかりずらいですが Google Bookmarks にも公式のBookMarkletがありますが改造したものを以下においときます。 {{{ javascript:(function(){var%20d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://www.google.com/bookmarks/mark',l=d.location,e=encodeURIComponent,p='?op=edit&output=popup&bkmk='+e(l.href)+'&title='+e(d.title)+'&annotation='+e(s);u=f+p;a=function(){if(!window.open(u,'t','toolbar=0,resizable=1,status=1,width=700,height=500'))l.href=f};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}void(0)})();undefined; }}} == Google RSSに登録 == [http://www.google.co.jp/reader/ Google リーダー]は設定の追加機能にBookMarkletを公開しているのでそれを利用 = Tumblr = [http://www.tumblr.com/goodies Tumblr Goodies] {{{ http://www.tumblr.com/new/text }}} = 参考サイト = ---- CategoryProgramingTools