2008-07-08から1日間の記事一覧
// ==UserScript== // @name countTextarea // @namespace http://d.hatena.ne.jp/javascripter/ // @include http* // ==/UserScript== Array.forEach(document.getElementsByTagName('textarea'), function(textarea) { textarea.addEventListener('focus'…
ユーザーCSSで広告などを削除するとき用のブックマークレット。 javascript:var textarea=document.body.appendChild(document.createElement('textarea')),s=[];with(textarea.style){position='fixed';top='0px';right='0px';width='10em';height='10em';z…