[HOME]: [Mac OS X]: [MacPython]: [Emacs]: [生存報告記]: [MacEmacs JP Project]: [NTEmacs JP Project]:

概要

JavaScriptにより作成されたブックマークより呼びだすための小物ツール類

たいがい自分にしか役にたたなかったりする。

公式に提供されている物

ブックマークレット - はてな

Remember The Milk - Help / FAQ / Quick Add

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;

普通のリンク作成

[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に登録

Google リーダーは設定の追加機能にBookMarkletを公開しているのでそれを利用

Tumblr

Tumblr Goodies

http://www.tumblr.com/new/text

参考サイト


CategoryProgramingTools

紹介マニアMoinMoin: BookMarklet (last edited 2009-10-05 00:02:26 by sakito)