/*
* @title MASUDA DECO REMOVER
* @description テキトー
* @include http://anond.hatelabo.jp/*
* @license MIT License
* @require
*/
(function(){
var b = document.querySelectorAll('div.body span');
for (var i=0; i<b.length; i++){
if(b[i].hasAttribute('style')){
b[i].removeAttribute('style');
}
}
})();