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

概要

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

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

公式に提供されている物

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

Remember The Milk - Help / FAQ / Quick Add

Tumblr Goodies

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);})()

Google

Google Bookmarks に登録

かなりわかりずらいですが Google Bookmarks にも公式のBookMarkletがあります。以下はその公式の物。リンクがあまりにわかりずらい所にあるので転載しています。

javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+c(b.location)+"&title="+c(b.title),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();

Google RSSに登録

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

参考サイト


CategoryProgramingTools