Created
February 10, 2012 09:15
-
-
Save taizooo/1787965 to your computer and use it in GitHub Desktop.
何̄を̫見̷てͨも̫何͔かͩ思̈́い̭出́す リ・リローデッド
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name nani_wo_mite_mo_nanika_wo_omoidasu_reloaded.user.js | |
// @namespace http://d.hatena.ne.jp/taizooo/ | |
// @include http://ermos-tily.dotcloud.com/* | |
// ==/UserScript== | |
// via http://let.hatelabo.jp/taizooo/let/gYC-xau7z9ONTw | |
location.href = 'javascript:(' + | |
function () { | |
(function (w) { | |
w.document.addEventListener('DOMNodeInserted', function (evt) { | |
var elm = evt.target; | |
if (elm.className == 'item') { | |
$('.thing', elm).each(function () { | |
format($(this), $(this).text()) | |
}); | |
} | |
}); | |
})(window); | |
}.toString() + ')()'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment