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

javascript:window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_blank');undefined;

Google RSSに登録

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

参考サイト


CategoryProgramingTools