カーソルの位置に日付(年/月/日 時:分)を挿入するブックマークレット。ライセンスはNYSL(http://www.kmonos.net/nysl/ )です。参考URL→http://d.hatena.ne.jp/n9d/20070606/1181133306 、http://www.hrykozw.com/blog/archives/551
javascript:(function(){n=(t=(document.activeElement || window.getSelection().focusNode)).selectionStart;v=t.value;s=t.scrollTop;t.value=(v.substr(0,n)+(f=[(d=new Date()).getFullYear(),(d.getMonth()+1),d.getDate()].join("/")+" "+[(d=new Date()).getHours(),d.getMinutes(),d.getSeconds()].join(":"))+v.substr(n,v.length));t.scrollTop=s;t.setSelectionRange((p=n+f.length),p)})()