2008年 12月 24日

うごメモのサムネイルをデフォルトでアニメーションさせる GM

// ==UserScript==
// @name        Animate All Thumbnails
// @namespace   http://lowreal.net/
// @include     http://ugomemo.hatena.ne.jp/*
// ==/UserScript==
//
location.href = "javascript:"+encodeURIComponent(uneval(function () {
	Ten.Selector.getElementsBySelector('img.thumb').forEach(function (thumbnail) {
		console.log(thumbnail);
		thumbnail.onmouseover = function () {};
		thumbnail.onmouseout = function () {};
		thumbnail.src = thumbnail.src.replace(/_m.gif$/, '_as.gif');
	});
}))+"()";

設定であるような気がしたけど見付からなかった

イベント解除がうまく動いてない