/*
* @title めんま変換
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
javascript:function m(b) { if(b.style) { b.style.fontFamily = 'menma'; } var c=b.childNodes,i; for(i=0;i<c.length;i++) { m(c[i]); }} m(document.body);