登録ブックマークレット
以下のJavaScriptプログラムをブックマークレットとして登録しておくと、飛び先に指定したいページをすぐにGoQuickに登録することができます。
code:goquick.js
javascript: (function(){
var w=window.open();
var desc=window.getSelection();
if(desc=='') desc=document.title;
var url=document.location.href;
w.location.href='http://GoQuick.org/_edit?longname='+escape(url)+'&description='+encodeURIComponent(desc);
})()